kitchen-simulator
Version:
It is a kitchen simulator (self-contained micro-frontend).
31 lines • 1.28 kB
JavaScript
import Button from "./button";
import CancelButton from "./cancel-button";
import ContentContainer from "./content-container";
import ContentTitle from "./content-title";
import DeleteButton from "./delete-button";
import FormBlock from "./form-block";
import FormColorInput from "./form-color-input";
import FormLabel from "./form-label";
import FormNumberInput from "./form-number-input";
import FormSelect from "./form-select";
import FormSlider from "./form-slider";
import FormSubmitButton from "./form-submit-button";
import FormTextInput from "./form-text-input";
import FormNumberInput2 from "./form-number-input_2";
export { Button, CancelButton, ContentContainer, ContentTitle, DeleteButton, FormBlock, FormColorInput, FormLabel, FormNumberInput, FormSelect, FormSlider, FormSubmitButton, FormTextInput, FormNumberInput2 };
export default {
Button: Button,
CancelButton: CancelButton,
ContentContainer: ContentContainer,
ContentTitle: ContentTitle,
DeleteButton: DeleteButton,
FormBlock: FormBlock,
FormColorInput: FormColorInput,
FormLabel: FormLabel,
FormNumberInput: FormNumberInput,
FormSelect: FormSelect,
FormSlider: FormSlider,
FormSubmitButton: FormSubmitButton,
FormTextInput: FormTextInput,
FormNumberInput2: FormNumberInput2
};