Skip to content

Commit

Permalink
feat: qfeed-78 프로필 페이지 라우터 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunami97 committed Dec 1, 2024
1 parent 5f76e92 commit b2a97fe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/router/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import ChatRoom from '@/pages/ChatRoom';
import QSpaceDetailPage from '@/pages/QSpaceDetail';
import QuestionPage from '@/pages/Question';
import SelectPage from '@/pages/Select';
import ProfilePage from '@/pages/Profile';

const router = createBrowserRouter([
{
Expand Down Expand Up @@ -71,6 +72,10 @@ const router = createBrowserRouter([
path: '/select',
element: <SelectPage />,
},
{
path: '/profile/:id',
element: <ProfilePage />,
},
],
},
]);
Expand Down

0 comments on commit b2a97fe

Please sign in to comment.