Skip to content

Commit

Permalink
feat: RootLayout FNB 컴포넌트 이름 변경 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
Legitgoons committed Apr 11, 2024
1 parent 2d2e2be commit f4b570c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/layout/RootLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Outlet } from 'react-router-dom';
import Navbar from '@/shared/ui/FNB/FNB';
import FNB from '@/shared/ui/FNB/FNB';

export default function RootLayout() {
return (
<>
<Outlet />
<Navbar />
<FNB />
</>
);
}

0 comments on commit f4b570c

Please sign in to comment.