Fixed route for Group paging

This commit is contained in:
Philipp Czora
2018-08-01 15:51:54 +02:00
parent bc10ce587d
commit 6719d12db9

View File

@@ -73,6 +73,12 @@ class Main extends React.Component<Props> {
path="/groups/add"
component={AddGroup}
/>
<ProtectedRoute
exact
path="/groups/:page"
component={Groups}
authenticated={authenticated}
/>
</Switch>
</div>
);