Shih-hungg's picture
A big update that defines question prompts and article generation
e058d03
raw
history blame contribute delete
488 Bytes
// Independent input components
export { default as SelectInput } from './SelectInput';
export type { SelectInputProps, SelectOption } from './SelectInput';
export { default as RangeInput } from './RangeInput';
export type { RangeInputProps } from './RangeInput';
export { default as TextInput } from './TextInput';
export type { TextInputProps } from './TextInput';
export { default as CheckboxInput } from './CheckboxInput';
export type { CheckboxInputProps } from './CheckboxInput';