blob: a325b1c1d2e67d5b40fe2c660be24a780aaba8a4 (
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}
</AnimationLayout>
<BasicFooter />
</>
)
}
export default AppLayout
|