group posts

This commit is contained in:
Виталий Лавшонок
2025-11-15 22:23:26 +03:00
parent dfc2985209
commit 56b6f9b339
28 changed files with 624 additions and 47 deletions

View File

@@ -42,7 +42,7 @@ const Home = () => {
path="group-invite/*"
element={<GroupInvite />}
/>
<Route path="group/:groupId" element={<Group />} />
<Route path="group/:groupId/*" element={<Group />} />
<Route path="groups/*" element={<Groups />} />
</Route>
@@ -85,7 +85,7 @@ const Home = () => {
<Route path="articles/*" element={<ArticlesRightPanel />} />
<Route path="missions/*" element={<MissionsRightPanel />} />
<Route
path="group/:groupId"
path="group/:groupId/*"
element={<GroupRightPanel />}
/>
</Routes>