import { PropsWithChildren } from "react" const Form = ({ children }: PropsWithChildren) => (
{children}
) export default Form