v6.1.0
New Features
Usage:
import { withTypes, Field } from 'react-final-form'
type MyValues = {
email: string,
password: string
}
const { Form } = withTypes<MyValues>()
<Form onSubmit={onSubmit}>
{({ handleSubmit, values }) => {
// values are of type MyValues
}}
</Form>