Initial commit

This commit is contained in:
Harivansh Rathi 2024-12-05 15:59:08 -05:00
commit ae239a2849
42 changed files with 6674 additions and 0 deletions

View file

@ -0,0 +1,20 @@
import React from 'react';
import { Outlet } from 'react-router-dom';
import { Header } from '../Header';
import { Sidebar } from '../Sidebar';
const DashboardLayout: React.FC = () => {
return (
<div className="flex min-h-screen flex-col">
<Header />
<div className="flex flex-1">
<Sidebar />
<main className="flex-1 overflow-y-auto bg-muted/50 p-6">
<Outlet />
</main>
</div>
</div>
);
};
export default DashboardLayout;