import Button from '@/components/elements/Button'; import Label from '@/components/elements/Label'; import { Form, Formik } from 'formik'; import React from 'react'; import tw from 'twin.macro'; import AdminBox from '@/components/admin/AdminBox'; import Field, { FieldRow } from '@/components/elements/Field'; import Select from '@/components/elements/Select'; export default () => { const submit = () => { // }; return ( {({ isSubmitting, isValid }) => (
)}
); };