diff options
Diffstat (limited to 'src/core/components/layouts/AppLayout.jsx')
| -rw-r--r-- | src/core/components/layouts/AppLayout.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/components/layouts/AppLayout.jsx b/src/core/components/layouts/AppLayout.jsx index 3e3c8ee5..006c47c7 100644 --- a/src/core/components/layouts/AppLayout.jsx +++ b/src/core/components/layouts/AppLayout.jsx @@ -1,4 +1,5 @@ import AppBar from '../elements/Appbar/Appbar' +import BasicFooter from '../elements/Footer/BasicFooter' import AnimationLayout from './AnimationLayout' const AppLayout = ({ children, title }) => { @@ -7,6 +8,7 @@ const AppLayout = ({ children, title }) => { <AnimationLayout> <AppBar title={title} /> {children} + <BasicFooter /> </AnimationLayout> </> ) |
