1.0.11 • Published 6 years ago

react-form-controls v1.0.11

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

React Form Controls

Controls to make working with forms simple.

npm install react-form-controls --save

Usage

import Form, { Text, TextArea, Checkbox, Button } from 'react-form-controls'

export default () => {
  return <Form onSubmit={({
    first_name,
    last_name,
    age
  }) => {
    console.log({ first_name, last_name, age })
  }}>
    <Text name="first_name" />
    <Text name="last_name" />
    <Text name="age" type="number" />
    <Button>Submit</Button>
  </Form>
}