11 lines
No EOL
276 B
TypeScript
11 lines
No EOL
276 B
TypeScript
import { type ReactNode } from 'react';
|
|
|
|
import Wrapper from '@/ui/dashboard/Wrapper';
|
|
|
|
export default function Layout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<div className="flex h-screen w-full flex-col">
|
|
<Wrapper>{children}</Wrapper>
|
|
</div>
|
|
);
|
|
} |