summaryrefslogtreecommitdiff
path: root/src/core/components/layouts/BasicLayout.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/components/layouts/BasicLayout.jsx')
-rw-r--r--src/core/components/layouts/BasicLayout.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/components/layouts/BasicLayout.jsx b/src/core/components/layouts/BasicLayout.jsx
index 32c785e5..94c235fb 100644
--- a/src/core/components/layouts/BasicLayout.jsx
+++ b/src/core/components/layouts/BasicLayout.jsx
@@ -1,10 +1,10 @@
-import NavBar from "../elements/NavBar/NavBar"
+import Navbar from "../elements/Navbar/Navbar"
import AnimationLayout from "./AnimationLayout"
const BasicLayout = ({ children }) => {
return (
<>
- <NavBar />
+ <Navbar />
<AnimationLayout>
{ children }
</AnimationLayout>