diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-13 12:06:06 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-13 12:06:06 +0100 |
| commit | 4cae14b9f86609b8c1f74d97a033e7091af49cb4 (patch) | |
| tree | f5e81bde47b47947901a00307a47c36e3fc38ffd /src/components/Layouts | |
| parent | 45335042c91c6bf5aa736658c461d54f96a6e0f2 (diff) | |
chore: change app to use a layout
I can now insert header/footer on each pages.
Diffstat (limited to 'src/components/Layouts')
| -rw-r--r-- | src/components/Layouts/Layout.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/Layouts/Layout.tsx b/src/components/Layouts/Layout.tsx new file mode 100644 index 0000000..4270a17 --- /dev/null +++ b/src/components/Layouts/Layout.tsx @@ -0,0 +1,16 @@ +import { FunctionComponent } from 'react'; +import Footer from '@components/Footer/Footer'; +import Header from '@components/Header/Header'; +import Main from '@components/Main/Main'; + +const Layout: FunctionComponent = ({ children }) => { + return ( + <> + <Header /> + <Main>{children}</Main> + <Footer /> + </> + ); +}; + +export default Layout; |
