summaryrefslogtreecommitdiff
path: root/src/core/components/layouts/AppLayout.jsx
blob: 3e98647752aab669a8609b4220e155562a7b1e30 (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 (
    <>
      <AnimationLayout>
        <AppBar title={title}/>
        { children }
      </AnimationLayout>
    </>
  )
}

export default AppLayout