@hixme-ui/forms
v2.2.0
Published
hixme-ui forms category for access to all HUI form components
Downloads
193
Readme
Forms
npm i --save @hixme-ui/forms
Forms provides an easy import for all HUI form category of components.
Usage
Using children options
import { Button, Label, FormGroup, Input } from '@hixme-ui/forms'
<form>
<FormGroup>
<Label>First name</Label>
<Input name='firstname' required />
</FormGroup>
<Button>Submit</Button>
</form>