mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 17:03:38 +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;
|