tasko/app/(platform)/(dashboard)/layout.tsx

13 lines
247 B
TypeScript
Raw Normal View History

2024-02-15 20:49:19 -05:00
import { Navbar } from './_components/Navbar';
2024-02-14 21:30:10 -05:00
const DashbordLayout = ({ children }: { children: React.ReactNode }) => {
return (
2024-02-15 20:49:19 -05:00
<div className='h-full'>
2024-02-14 21:30:10 -05:00
<Navbar />
{children}
</div>
);
};
export default DashbordLayout;