Skip to content

Commit

Permalink
refactor(navBarData): 라우트 경로 임포트해서 사용
Browse files Browse the repository at this point in the history
  • Loading branch information
joojjang committed Oct 2, 2024
1 parent 7fc08da commit 348cda5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/constants/nav-bar/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ export const navBarData = [
{
title: 'shorts',
icon: ShortsIcon,
path: '/shorts',
path: `/${RouterPath.shorts}`,
},
{
title: 'main',
icon: MainIcon,
path: '/',
path: `/${RouterPath.root}`,
},
{
title: 'rank',
icon: RankIcon,
path: '/rank',
path: `/${RouterPath.rank}`,
},
{
title: 'dashboard',
icon: DashboardIcon,
path: '/dashboard',
path: `/${RouterPath.dashboard}`,
},
];

0 comments on commit 348cda5

Please sign in to comment.