Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Farmaha committed Jan 21, 2024
1 parent cb3dcc3 commit c9df919
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Layout/Layout.jsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// import { Outlet } from "react-router-dom";
import { Outlet } from "react-router-dom";
import { AppBar } from "../components/AppBar/AppBar";
// import { Footer } from "../components/Footer/Footer";
// import { ScrollToTopButton } from "../components/ScrollToTopButton/ScrollToTopButton";
import { Footer } from "../components/Footer/Footer";
import { ScrollToTopButton } from "../components/ScrollToTopButton/ScrollToTopButton";

export const Layout = () => {
return (
<>
<AppBar />
<main>
{/* <Outlet /> */}
<Outlet />
</main>
{/* <Footer />
<ScrollToTopButton /> */}
<Footer />
<ScrollToTopButton />
</>
);
};

0 comments on commit c9df919

Please sign in to comment.