Skip to content

Frontend Routes

Chris Vo edited this page Feb 14, 2020 · 5 revisions

Frontend Routes

The components and routes are organized as follows:

  • Root
    • App
      • Main Component Goes Here

The following routes, defined in App, will render components in the main component:

  • /
    • Splash
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /servers/@me
    • Interface
      • ServerIndex
        • ServerIndexItem
      • PrivateServerIndex
        • PrivateServerIndexItem
      • FriendIndex
        • FriendIndexItem
  • /servers/:serverId/:channelId
    • Interface
      • ServerIndex
        • ServerIndexItem
      • ServerShow
        • ChannelIndex
          • ChannelIndexItem
        • EditUser
        • MessageIndex
          • MessageIndexItem
        • UserIndex
          • UserIndexItem
  • /servers/@me/:serverId
    • Interface
      • PrivateServerIndex
        • PrivateServerIndexItem
      • EditUser
      • ServerShow
        • MessageIndex
          • MessageIndexItem
Clone this wiki locally