← back to Norma

app/signup/_SignupWizardWrapper.tsx

13 lines

'use client';

import SignupWizard from '@/components/onboarding/SignupWizard';

/**
 * Thin client boundary wrapper so the server-side signup/page.tsx
 * can import the client-only SignupWizard without making the whole
 * page a client component.
 */
export default function SignupWizardWrapper() {
  return <SignupWizard />;
}