import { FC, useState } from 'react' import dynamic from 'next/dynamic' import { FormikErrors, FormikTouched } from 'formik' const Button = dynamic(() => import('@components/Button')) const TextArea = dynamic(() => import('@components/Form/TextArea')) export const Check: FC<{ checked: boolean; text: string }> = ({ checked, text }) => ( <> {checked && } {text} > ) export const SubmitButton: FC = () => (