summaryrefslogtreecommitdiff
path: root/src/core/components/layouts/BasicLayout.jsx
blob: 32c785e5f9d17cd4b995659463c77ff23b848ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import NavBar from "../elements/NavBar/NavBar"
import AnimationLayout from "./AnimationLayout"

const BasicLayout = ({ children }) => {
  return (
    <>
      <NavBar />
      <AnimationLayout>
        { children }
      </AnimationLayout>
    </>
  )
}

export default BasicLayout