Frontend Routes - erinicole/RentClothesWithPockets GitHub Wiki

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
    • ShoppingCart
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /products
    • ProductItem
    • Filter
  • /products/:productId
    • ProductShow
    • ReviewIndex
  • /users/:userId
    • Profile