diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-20 17:03:28 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-20 17:03:28 +0700 |
| commit | ed950b23d50f9b3993cfd2ac2386a5b3a68d5e57 (patch) | |
| tree | 0094beddcb6df11a3bc5347759caf4cf7aeada59 /src/core/components/layouts | |
| parent | e33a330786ffbfcd774de00dc697c6dff47faf27 (diff) | |
fix
Diffstat (limited to 'src/core/components/layouts')
| -rw-r--r-- | src/core/components/layouts/AnimationLayout.jsx | 2 | ||||
| -rw-r--r-- | src/core/components/layouts/AppLayout.jsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/components/layouts/AnimationLayout.jsx b/src/core/components/layouts/AnimationLayout.jsx index adb6b081..cf2b06d5 100644 --- a/src/core/components/layouts/AnimationLayout.jsx +++ b/src/core/components/layouts/AnimationLayout.jsx @@ -2,7 +2,7 @@ import { motion } from 'framer-motion' const AnimationLayout = ({ children, ...props }) => { const transition = { - ease: 'easeOut', + ease: 'easeIn', duration: 0.3 } diff --git a/src/core/components/layouts/AppLayout.jsx b/src/core/components/layouts/AppLayout.jsx index 7aaa52ca..3e986477 100644 --- a/src/core/components/layouts/AppLayout.jsx +++ b/src/core/components/layouts/AppLayout.jsx @@ -4,8 +4,8 @@ import AnimationLayout from "./AnimationLayout" const AppLayout = ({ children, title }) => { return ( <> - <AppBar title={title}/> <AnimationLayout> + <AppBar title={title}/> { children } </AnimationLayout> </> |
