summaryrefslogtreecommitdiff
path: root/src/core/components/layouts/AppLayout.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/components/layouts/AppLayout.jsx')
-rw-r--r--src/core/components/layouts/AppLayout.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/components/layouts/AppLayout.jsx b/src/core/components/layouts/AppLayout.jsx
index a325b1c1..d74d61e3 100644
--- a/src/core/components/layouts/AppLayout.jsx
+++ b/src/core/components/layouts/AppLayout.jsx
@@ -2,14 +2,14 @@ import AppBar from '../elements/Appbar/Appbar'
import BasicFooter from '../elements/Footer/BasicFooter'
import AnimationLayout from './AnimationLayout'
-const AppLayout = ({ children, title }) => {
+const AppLayout = ({ children, title, withFooter = true }) => {
return (
<>
<AnimationLayout>
<AppBar title={title} />
{children}
</AnimationLayout>
- <BasicFooter />
+ {withFooter && <BasicFooter />}
</>
)
}