// @ts-nocheck import React from 'react'; import SetupSubscription from './SetupSubscription/SetupSubscription'; import SetupOrganizationPage from './SetupOrganizationPage'; import SetupInitializingForm from './SetupInitializingForm'; import SetupCongratsPage from './SetupCongratsPage'; import { Stepper } from '@/components/Stepper'; import styles from './SetupWizardContent.module.scss'; interface SetupWizardContentProps { stepIndex: number; stepId: string; } /** * Setup wizard content. */ export default function SetupWizardContent({ stepIndex, stepId, }: SetupWizardContentProps) { return (