web / frontend /src /pages /MainLayout.tsx
Chandima Prabhath
Track bun.lockb with Git LFS
cc2caf9
raw
history blame
359 Bytes
import Navbar from '../components/Navbar';
import Footer from '../components/Footer';
import { Outlet } from 'react-router-dom';
const MainLayout = () => {
return (
<div className="min-h-screen bg-netflix-black text-white">
<Navbar />
<main>
<Outlet />
</main>
<Footer />
</div>
);
};
export default MainLayout;