Files
col-thinkspace/resources/js/layouts/pages/layout.tsx
Chief-spartan-117 972264e361
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
init
2026-01-21 11:13:09 +05:45

18 lines
407 B
TypeScript

import Navbar from '@/components/layout/Navbar';
import { ReactNode } from 'react';
interface LayoutInterface {
children: ReactNode;
}
export default function Layout({ children }: LayoutInterface) {
return (
<>
<div className="mx-auto grid min-h-[100dvh] grid-rows-[auto_1fr_auto]">
<Navbar />
{children}
</div>
</>
);
}