diff --git a/components/Form/CheckBox.tsx b/components/Form/CheckBox.tsx new file mode 100644 index 0000000..73ba2eb --- /dev/null +++ b/components/Form/CheckBox.tsx @@ -0,0 +1,12 @@ +import { Field } from 'formik' + +const CheckBox = ({ name, ...props }:CheckBoxProps):JSX.Element => { + return +} + +interface CheckBoxProps { + name: string + [key: string]: unknown +} + +export default CheckBox \ No newline at end of file