Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Frontend Routes

Phil Gresh edited this page Aug 25, 2020 · 6 revisions

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.

  • /
    • Splash (not signed in)
    • Home (signed in)
  • /signin
    • SigninFormContainer
      • SessionForm
  • /signup
    • SignupFormContainer
      • SessionForm
  • /documents/
    • DocsIndexContainer
      • DocsIndex
        • DocsIndexItem
  • /documents/new
    • CreateDocContainer
      • DocForm
  • /documents/:docId
    • ShowDocContainer
      • DocShow
  • /documents/:docId/edit
    • EditDocContainer
      • DocForm
  • /users/
    • UsersIndexContainer
      • UsersIndex
        • UsersIndexItem
  • /users/:userId
    • UserShowContainer
      • UserShow
  • /profile
    • ProfileContainer
      • Profile
        • FontFamilySelection
        • SigPad
Clone this wiki locally