Skip to content

Commit c437a0d

Browse files
committed
Fix: 채팅 UI 구현, 수정 필요
1 parent 3cadfdf commit c437a0d

File tree

6 files changed

+1239
-257
lines changed

6 files changed

+1239
-257
lines changed

src/App.jsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@ function App() {
3232
<div>보호된 페이지</div>
3333
</ProtectedRoute>
3434
} />
35-
35+
3636
{/* 채팅 관련 라우트 추가 */}
37-
<Route path="/chat-rooms" element={<ChatRoomList />} />
37+
<Route path="/chat-rooms/*" element={<ChatRoomList />} />
3838
<Route path="/create-room" element={<CreateChatRoom />} />
39-
<Route path="/chat/:roomId" element={<ChatRoom />} />
4039
</Routes>
4140
</Router>
4241
);

0 commit comments

Comments
 (0)