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