summaryrefslogtreecommitdiff
path: root/src/core/components/layouts/AppLayout.jsx
blob: 3e3c8ee52720bee8de4c662c30f8233b856b5eae (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