import { RegistrationForm } from '@/components/registration-form'; interface RegisterPageProps { params: Promise<{ eventId: string; }>; } export default async function RegisterPage({ params }: RegisterPageProps) { const { eventId } = await params; return (
); }