Skip to content

frontend routes

idechow edited this page Jan 3, 2020 · 4 revisions

Frontend Routes

Our components are organized as follows:

  • Root
    • App
      • NavBar
      • (main component goes here)
      • Footer

The following routes, defined in App, will render components between NavBar and Footer.

  • /
    • splash
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /feed
    • AlbumIndex
      • AlbumIndexItem
  • `/users/:userId
    • ProfileComponent
    • CollectionIndex
      • AlbumIndexItem
  • /album/new
    • AlbumForm
  • /album/:albumId
    • AlbumShow
  • /album/:albumId/edit
    • AlbumForm
Clone this wiki locally