Frontend Routes - miketu926/GetStarted GitHub Wiki

Components:

  • Root
    • App
      • NavBar
      • (main component goes here)
      • Footer

The following routes, defined in App, will render components between NavBar and Footer.

  • /
    • HomeViewComponent
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /main
    • ProjectIndex
  • /users/:userId
    • ProfileComponent
  • /projects/new
    • ProjectForm
  • /projects/:projectId
    • ProjectShow
  • /projects/:projectId/edit
    • ProjectForm