export function AuthForm({ title, fields, onSubmit, submitLabel, footer }) { return (

{title}

{fields.map((field) => ( ))}
{footer}
); }