import React from 'react' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '../ui/card' export default function FormWrapper({ title, description, form }: { title: string, description?: string, form: React.ReactNode }) { return ( {title} {description && ( Enter your email below to login )} {form} ) }