summaryrefslogtreecommitdiff
path: root/src/core/components/layouts/AppLayout.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-03-01 13:53:31 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-03-01 13:53:31 +0700
commita1b9b647a6c4bda1f5db63879639d44543f9557e (patch)
tree74f66253717515d364ce74bd8275015c1f829cbc /src/core/components/layouts/AppLayout.jsx
parent63d73e57091c355041489cc327512f808b515a10 (diff)
fix layout
Diffstat (limited to 'src/core/components/layouts/AppLayout.jsx')
-rw-r--r--src/core/components/layouts/AppLayout.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/components/layouts/AppLayout.jsx b/src/core/components/layouts/AppLayout.jsx
index 006c47c7..a325b1c1 100644
--- a/src/core/components/layouts/AppLayout.jsx
+++ b/src/core/components/layouts/AppLayout.jsx
@@ -8,8 +8,8 @@ const AppLayout = ({ children, title }) => {
<AnimationLayout>
<AppBar title={title} />
{children}
- <BasicFooter />
</AnimationLayout>
+ <BasicFooter />
</>
)
}