react-form-controls

1.0.11 • Public • Published

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

Dependents (1)

Package Sidebar

Install

npm i react-form-controls

Weekly Downloads

0

Version

1.0.11

License

ISC

Unpacked Size

26.8 kB

Total Files

16

Last publish

Collaborators

  • rphansen91