Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
six-standard authored Aug 26, 2024
1 parent 5cb2b37 commit 0781b76
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions packages/main/src/router/Layout/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<<<<<<< Updated upstream
import { Header, Modal } from "./components";
import { useState } from "react";
export * from "./ViewLayout";
Expand All @@ -14,20 +13,6 @@ export const Layout = ({ children }: IProp) => {
<Header setOpened={setOpened} />
<Modal opened={opened} setOpened={setOpened} />
{children}
=======
// import { useState } from "react";
import { Outlet } from "react-router-dom";
// import { Header, Modal } from "./components";

export const Layout = () => {
// const [opened, setOpened] = useState(false);

return (
<div className="w-full h-fit bg-[#222222]">
{/* <Header setOpened={setOpened} /> */}
{/* <Modal opened={opened} setOpened={setOpened} /> */}
<Outlet />
>>>>>>> Stashed changes
</div>
);
};

0 comments on commit 0781b76

Please sign in to comment.