FrontEnd Routes - MichaelSchwar3/logmyjog GitHub Wiki

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
  • /auth/login
    • SessionForm
  • /auth/signup
    • SessionForm
  • /my_home/activity_feed
    • CommentIndex
      • CommentIndexItem
  • /my_home/user_dashboard
    • RunIndex
      • RunIndexItem
    • ProfileComponent
  • /profile/:id/goals
    • GoalIndex
      • GoalIndexItem
    • UserComponent
  • /routes
    • RunSearchForm
  • /routes/create
    • RunForm
  • /workouts
    • RunIndex
      • RunIndexItem