Skip to content

frontend routes

Sam edited this page Feb 25, 2019 · 2 revisions

Frontend Routes

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

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

  • /
    • Splash
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /feed
    • PostIndex
      • PostIndexItem
  • /users/:userId
    • ProfileComponent
    • PostIndex
      • PostIndexItem
  • /users/:userId/post
    • PostShow
  • /posts/new
    • PostForm
  • /posts/:postsId
    • PostShow
  • /post/:postId/edit
    • PostForm
Clone this wiki locally