frontend routes - nooccarr/perfect-pixel GitHub Wiki

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
  • /HomeFeed
    • PhotoIndex
      • PhotoIndexItem
  • /users/:userId
    • ProfileComponent
    • PhotoIndex
      • PhotoIndexIterm
  • /photos/new
    • PhotoForm
  • /photos/:photoId
    • PhotoShow
  • /photos/:photoId/edit
    • PhotoForm