import { ReactNode } from 'react'; import styles from './Form.module.scss'; const Form = ({ children, submitHandler, }: { children: ReactNode; submitHandler: any; }) => { return (