Last active
July 17, 2021 17:00
-
-
Save DZuz14/7e3e7c70c659ff6bcfe07075a7be6fea to your computer and use it in GitHub Desktop.
coh27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Form } from 'react-bootstrap' | |
import formData from './formData' | |
import useForm from './useForm' | |
const SomeComponent = () => { | |
const { fields } = useForm(formData) | |
return ( | |
<div css={CSS}> | |
<Form>{/* */}</Form> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment