2022-09-27 15:52:15 -04:00
|
|
|
import React from "react";
|
2022-09-27 21:41:39 -04:00
|
|
|
import { Outlet } from "react-router-dom";
|
2022-09-27 22:04:22 -04:00
|
|
|
import Topbar from "../components/Topbar";
|
2022-09-27 15:52:15 -04:00
|
|
|
import Footer from "../components/Footer";
|
|
|
|
|
|
|
|
const Layout = () => {
|
|
|
|
return (
|
|
|
|
<>
|
2022-09-27 22:04:22 -04:00
|
|
|
<Topbar />
|
2022-09-27 15:52:15 -04:00
|
|
|
<Outlet />
|
2022-09-27 21:41:39 -04:00
|
|
|
<Footer />
|
2022-09-27 15:52:15 -04:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Layout;
|