mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
19 lines
444 B
TypeScript
19 lines
444 B
TypeScript
import DragAndDropFileInput from "./input/file/DragAndDropFileInput";
|
|
import FileInput from "./input/file/FileInput";
|
|
import NumberInput from "./input/number/NumberInput";
|
|
import OptionInput from "./input/text/OptionInput";
|
|
import SelectInput from "./input/text/SelectInput";
|
|
import TextInput from "./input/text/TextInput";
|
|
|
|
|
|
export {
|
|
DragAndDropFileInput,
|
|
FileInput,
|
|
NumberInput,
|
|
//NumberSlider,
|
|
OptionInput,
|
|
SelectInput,
|
|
TextInput
|
|
};
|
|
|