Spaces:
Running
Running
File size: 359 Bytes
cc2caf9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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;
|