blob: 006c47c74187c290f21629adeabfcaf44acb24ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import AppBar from '../elements/Appbar/Appbar'
import BasicFooter from '../elements/Footer/BasicFooter'
import AnimationLayout from './AnimationLayout'
const AppLayout = ({ children, title }) => {
return (
<>
<AnimationLayout>
<AppBar title={title} />
{children}
<BasicFooter />
</AnimationLayout>
</>
)
}
export default AppLayout
|