feat(admin): added dashboard comp.

This commit is contained in:
sanjidarimi
2026-05-10 21:33:43 +06:00
parent 4a61e841ae
commit 7163cdd735
7 changed files with 252 additions and 15 deletions
+15
View File
@@ -0,0 +1,15 @@
import { Outlet } from "react-router-dom";
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
const MainLayout = () => {
return (
<>
<Navbar />
<Outlet />
<Footer />
</>
);
};
export default MainLayout;