Skip to content

Frontend Routes

Erick Santos edited this page Apr 29, 2020 · 7 revisions

Frontend Routes

Our components are organized as follows:

  • Root
    • App
      • Modal
      • Navbar
      • (main components)
      • Footer

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

  • /
    • Welcome
    • LoginForm
    • SignUpForm
      • Credentials
      • Names
      • Gender
      • LanguageAndRegion
      • Success
  • /feed
    • PinIndex
      • PinIndexItem
  • /users/:userId
    • Profile
    • BoardIndex
      • BoardShow
    • PinIndex *PinIndexItem
  • /boards/new
    • Modal
    • BoardForm
  • /boards/:boardId
    • BoardShow
  • /boards/:boardId/edit
    • Modal
    • BoardForm
  • /pins/new
    • Modal
    • PinForm
  • /pins/:pinId
    • Modal
    • PinShow
  • /pins/:pinId/edit
    • Modal
    • PinForm
Clone this wiki locally