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.jsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/components/layouts/AppLayout.jsx b/src/core/components/layouts/AppLayout.jsx
index 3e986477..3e3c8ee5 100644
--- a/src/core/components/layouts/AppLayout.jsx
+++ b/src/core/components/layouts/AppLayout.jsx
@@ -1,15 +1,15 @@
-import AppBar from "../elements/Appbar/Appbar"
-import AnimationLayout from "./AnimationLayout"
+import AppBar from '../elements/Appbar/Appbar'
+import AnimationLayout from './AnimationLayout'
const AppLayout = ({ children, title }) => {
return (
<>
<AnimationLayout>
- <AppBar title={title}/>
- { children }
+ <AppBar title={title} />
+ {children}
</AnimationLayout>
</>
)
}
-export default AppLayout \ No newline at end of file
+export default AppLayout