frontend routes - ppondo/Uncorkd 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.

  • /login

    • SessionForm
  • /signup

    • SessionForm
  • /home

    • CheckinsIndex
      • CheckinsIndexItem
  • /profile/:userId

    • ProfileComponent
    • CheckinsIndex
      • CheckinsIndexItem
  • /user/:user_id/checkin/:checkin_id

    • CheckinsShow
  • /beverage/:beverageId

    • BeverageShow
    • CheckinsIndex
    • CheckinsForm
    • BeverageForm
  • /brewery/:breweryId

    • BreweryShow
    • BreweryForm
    • CheckinsIndex
      • CheckinsIndexItem