mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-02-07 19:52:50 +00:00
12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import { Navbar } from "./_components/Navbar";
|
|
|
|
const DashbordLayout = ({ children }: { children: React.ReactNode }) => {
|
|
return (
|
|
<div className="h-full">
|
|
<Navbar />
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default DashbordLayout;
|