10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
import { MainLayout } from '@/components/layout/main-layout'
|
|
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <MainLayout>{children}</MainLayout>
|
|
}
|