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.jsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/core/components/layouts/AppLayout.jsx b/src/core/components/layouts/AppLayout.jsx
new file mode 100644
index 00000000..a325b1c1
--- /dev/null
+++ b/src/core/components/layouts/AppLayout.jsx
@@ -0,0 +1,17 @@
+import AppBar from '../elements/Appbar/Appbar'
+import BasicFooter from '../elements/Footer/BasicFooter'
+import AnimationLayout from './AnimationLayout'
+
+const AppLayout = ({ children, title }) => {
+ return (
+ <>
+ <AnimationLayout>
+ <AppBar title={title} />
+ {children}
+ </AnimationLayout>
+ <BasicFooter />
+ </>
+ )
+}
+
+export default AppLayout