'use client'; import { Form } from '@/ui/Form'; import { Group } from '@/ui/Group'; import React from 'react'; interface AuthFormProps { children: React.ReactNode; onSubmit: (e: React.FormEvent) => void; } /** * AuthForm * * Semantic form wrapper for auth flows. */ export function AuthForm({ children, onSubmit }: AuthFormProps) { return (
{children}
); }