Skip to content

Frontend Routes

gty3310 edited this page Aug 8, 2018 · 2 revisions

Post# Frontend Routes

Our components are organized as follows:

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

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

  • /
    • Home
      • UserForm
      • SessionForm
      • PostIndex
        • PostIndexItem
  • /users/:userId
    • ProfileComponent
    • PostIndex
      • PostIndexItem
  • /posts/new
    • PostForm
  • /posts/:postId
    • PostShow
    • Comments
    • Comment Form
  • /posts/:postId/edit
    • PostForm
Clone this wiki locally