import Form from 'next/form'; import { Input } from '../ui/input'; import { Label } from '../ui/label'; export function AuthForm({ action, children, defaultEmail = '', }: { action: any; children: React.ReactNode; defaultEmail?: string; }) { return (
); }