feat: use channel component for server route

This commit is contained in:
goat 2021-09-08 02:36:31 +02:00
parent 4787a2166f
commit 3b77628f9f
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5

View file

@ -111,7 +111,7 @@ export default function App() {
path="/server/:server/channel/:channel" path="/server/:server/channel/:channel"
component={Channel} component={Channel}
/> />
<Route path="/server/:server" /> <Route path="/server/:server" component={Channel} />
<Route path="/channel/:channel" component={Channel} /> <Route path="/channel/:channel" component={Channel} />
<Route path="/settings/:page" component={Settings} /> <Route path="/settings/:page" component={Settings} />