import Card from './Card'; interface FormProps { title: string widthClass?: string onSubmit: (event: React.FormEvent) => void children: React.ReactNode } function Form({ title, onSubmit, widthClass = 'max-w-xs', children }: FormProps) { return (
{children}
); } export default Form;