react-form-controls

v1.0.0

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

Metadata

  • ISC
  • Whatever
  • Unknown
  • released 2/15/2018

Downloads

Maintainers