© 2026 Hedgehog Software, LLC
/:id/@me/
/:id/:guild_id/
http://localhost:1420/123456789123456789/@me
<Router> <Route path="/" component={AuthView} /> <Route path="/:id" component={AccountLayout}> <Route path="/@me" component={PrivateDMLayout}> <Route path="/" component={() => <p>Hello World</p>} /> <Route path="/friends" component={FriendsView} /> <Route path="/:channel_id" component={ChannelView} /> </Route> <Route path="/:guild_id" component={GuildLayout}> <Route path="/:channel_id" component={ChannelView} /> <Route path="/" component={Account404} /> </Route> </Route> </Router>