17 lines
586 B
TypeScript
17 lines
586 B
TypeScript
|
|
import { LottoDashboard } from "@/features/lotto/components/LottoDashboard";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 로또 페이지 진입점입니다.
|
||
|
|
* Next.js App Router에서 `page.tsx`는 해당 라우트의 첫 화면을 담당합니다.
|
||
|
|
*/
|
||
|
|
export default function LottoPage() {
|
||
|
|
return (
|
||
|
|
<div className="flex min-h-screen flex-col items-center justify-center bg-zinc-50 p-6">
|
||
|
|
<div className="w-full max-w-6xl">
|
||
|
|
{/* 페이지 컨테이너는 레이아웃 역할만 담당하고, 실제 UI는 LottoDashboard에 위임합니다. */}
|
||
|
|
<LottoDashboard />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|