diff --git a/SECURITY.md b/SECURITY.md index e86632c..3031997 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -6,4 +6,4 @@ ## English -Please [mail](mailto:koreanbots.dev@gmail.com) us! +Please [mail](mailto:team@koreanbots.dev) us! diff --git a/components/ReportTemplate.tsx b/components/ReportTemplate.tsx new file mode 100644 index 0000000..646b2bb --- /dev/null +++ b/components/ReportTemplate.tsx @@ -0,0 +1,78 @@ +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 = () =>
+ +
+ +export const TextField: FC = ({ values, errors, touched, setFieldValue }) => <> +