import type { FC, ReactNode } from 'react' type Props = { children: ReactNode } const Form: FC = ({ children }) => (
{children}
) export default Form