15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
'use client';
|
|
|
|
import CreateLeagueWizard from '@/components/leagues/CreateLeagueWizard';
|
|
import Section from '@/components/ui/Section';
|
|
import Container from '@/components/ui/Container';
|
|
|
|
export default function CreateLeaguePage() {
|
|
return (
|
|
<Section>
|
|
<Container size="md">
|
|
<CreateLeagueWizard />
|
|
</Container>
|
|
</Section>
|
|
);
|
|
} |