Next.js
AppRouter
Layout(layout.tsx)
layout.tsx)export default function DashboardLayout({
children,
}: {
children: React.ReactNode,
}) {
return <section>{children}</section>;
}Template(template.tsx)
template.tsx)계층 순위
Last updated