Files
techzaa-frontend/src/pages/admins/layout/MainLayout.tsx
T

15 lines
267 B
TypeScript
Raw Normal View History

2026-05-10 21:33:43 +06:00
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;