summaryrefslogtreecommitdiff
path: root/src/core/components/layouts/BasicLayout.jsx
blob: 94c235fb51202140d3a00676375bd33e0ee7ca39 (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