joyent-portal/ui/src/components/form/index.js

23 lines
427 B
JavaScript
Raw Normal View History

import Checkbox from './checkbox';
import Fieldset from './fieldset';
import FormGroup from './group';
import Input from './input';
import FormLabel from './label';
import Legend from './legend';
import FormMeta from './meta';
import Radio, { RadioList } from './radio';
import Select from './select';
export {
Checkbox,
Fieldset,
FormGroup,
Input,
FormLabel,
Legend,
FormMeta,
Radio,
RadioList,
Select
2017-02-20 18:15:36 +02:00
};