Files
MattrixwvReactComponents/lib/component/input.ts
2025-07-20 23:33:21 -04:00

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
};