summaryrefslogtreecommitdiff
path: root/src/core/components/layouts/AppLayout.jsx
blob: 7aaa52cae224e9fe76c4796edffa2202924f25d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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