diff options
Diffstat (limited to 'src/core/components/layouts/AppLayout.jsx')
| -rw-r--r-- | src/core/components/layouts/AppLayout.jsx | 15 |
1 files changed, 15 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..7aaa52ca --- /dev/null +++ b/src/core/components/layouts/AppLayout.jsx @@ -0,0 +1,15 @@ +import AppBar from "../elements/Appbar/Appbar" +import AnimationLayout from "./AnimationLayout" + +const AppLayout = ({ children, title }) => { + return ( + <> + <AppBar title={title}/> + <AnimationLayout> + { children } + </AnimationLayout> + </> + ) +} + +export default AppLayout
\ No newline at end of file |
