1 2 3 4 5
import { ReactNode } from "react"; export const Form = ({ children }: { children: ReactNode }) => { return <form>{children}</form>; };