import React from 'react' import { useForm } from '../dist' import { mount } from './common' const Index: React.FC = () => { const { field, form } = useForm({ awesome: true, }) return (
{ e.preventDefault() console.log(form) }} >

Custom

) } mount(Index)