Skip to content

Frontend Routes and Components

junnac edited this page Nov 5, 2019 · 7 revisions

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
    • GuideIndex
      • GuideIndexItem
    • CitiesIndex
      • CitiesIndexItem
    • BreweryIndex
      • BreweryIndexItem
  • /users/:userId
    • ProfileComponent
    • FavoriteBreweryIndex
      • FavoriteBreweryIndexItem
  • /guides/:guideId/comments/new -- comments form on guide show page
    • CommentForm
  • /guides/:guideId/comments
    • GuideComments
  • /guides/:guideId/comments/:commentId/edit
    • CommentForm
Clone this wiki locally