Files
techzaa-frontend/src/pages/admins/layout/MainLayout.tsx
T
2026-05-14 20:21:03 +06:00

15 lines
277 B
TypeScript

import { Outlet } from "react-router-dom";
import Navbar from "@/components/home/Navbar";
import Footer from "@/components/home/Footer";
const MainLayout = () => {
return (
<>
<Navbar />
<Outlet />
<Footer />
</>
);
};
export default MainLayout;