Reusable form library for React
npm install formanceEnjoy forms in React :smirk:
```
npm install --save formance
or
``
yarn add formance
Formance helps to simplify managing forms in React. It's main goals are productivity and extensibility. To accomplish these goals it sets some convenient defaults and handles some repetitive jobs automatically and, also, provides clean api for constructing custom solutions.
Let's take a quick look:
`jsx
import { Form, Field, FieldError } from 'formance'
import { isEmail } from './some-validators'
const isRequired = value =>
(value ? undefined : 'Required')
const submitHandler = values => {
console.log('values:', values)
}
const MyComponent = () => (
export default MyComponent
``
More docs and examples coming soon...