ajout de tout le folder

This commit is contained in:
Medenos
2022-09-27 15:52:15 -04:00
parent d976e6419d
commit b14ebac2f1
7 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import React from "react";
import {Outlet} from "react-router-dom";
import Navbar from "../components/Navbar";
import Footer from "../components/Footer";
const Layout = () => {
return (
<>
<Navbar />
<Outlet />
<Footer/>
</>
);
};
export default Layout;