Frontend Routes and components - Tdon95/Center GitHub Wiki

Our components will be organized as something like the following:

  • Root
    • App
      • NavigationBar
      • (Main Content)
      • Footer

The following routes, which were defined in App, will be rendered in the Main Content.

  • /
    • Splash
  • /login
    • SessionForm
  • /feed
    • StoriesIndex
      • StoriesIndexItem
  • /signUp
    • SessionForm
  • /users/:userid
    • UserProfileComponent
      • UserProfileItem
      • UserStoriesForm
  • /upload
    • ArticleUploadForm
  • /articles/:articleid
    • ArticleShow
    • ArticleShowForm
    • ArticleShowItem