Skip to content

Commit

Permalink
design :: layout
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Mar 12, 2024
1 parent d9864c3 commit fd39485
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/router/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Outlet } from 'react-router-dom';
import { Header } from '@/components/common/header';
import { Footer } from '@/components/common/footer';

export const Layout = () => {
return (
<>
<Header />
<Outlet />
<Footer />
</>
);
};

0 comments on commit fd39485

Please sign in to comment.