mirror of
https://github.com/cupcakearmy/formhero.git
synced 2024-12-22 08:06:24 +00:00
38 lines
650 B
TypeScript
38 lines
650 B
TypeScript
import React from 'react'
|
|
|
|
import { useForm } from '../dist'
|
|
import { mount } from './common'
|
|
|
|
const Index: React.FC = () => {
|
|
const { field, form } = useForm({
|
|
awesome: true,
|
|
})
|
|
|
|
return (
|
|
<form
|
|
onSubmit={(e) => {
|
|
e.preventDefault()
|
|
console.log(form)
|
|
}}
|
|
>
|
|
<h1>Custom</h1>
|
|
|
|
<label>
|
|
<input
|
|
type="checkbox"
|
|
{...field('awesome', {
|
|
setter: 'checked',
|
|
getter: 'onChange',
|
|
extractor: (e) => e.target.checked,
|
|
})}
|
|
/>
|
|
Is it awesome?
|
|
</label>
|
|
|
|
<input type="submit" />
|
|
</form>
|
|
)
|
|
}
|
|
|
|
mount(Index)
|