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 form on guide show page
    • GuideShow
      • CommentForm
      • GuideComments
      • CommentForm
Clone this wiki locally