summaryrefslogtreecommitdiffstats
path: root/src/components/Layouts/Layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Layouts/Layout.tsx')
-rw-r--r--src/components/Layouts/Layout.tsx12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/components/Layouts/Layout.tsx b/src/components/Layouts/Layout.tsx
index 4270a17..7f8ab9d 100644
--- a/src/components/Layouts/Layout.tsx
+++ b/src/components/Layouts/Layout.tsx
@@ -1,12 +1,18 @@
-import { FunctionComponent } from 'react';
+import { ReactNode } from 'react';
import Footer from '@components/Footer/Footer';
import Header from '@components/Header/Header';
import Main from '@components/Main/Main';
-const Layout: FunctionComponent = ({ children }) => {
+const Layout = ({
+ children,
+ isHome = false,
+}: {
+ children: ReactNode;
+ isHome?: boolean;
+}) => {
return (
<>
- <Header />
+ <Header isHome={isHome} />
<Main>{children}</Main>
<Footer />
</>