Skip to content

Frontend Routes

davidrichard23 edited this page Jan 22, 2019 · 2 revisions

Our components are organized as follows:

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

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

  • /
    • Splash if not logged in
    • Dashboard if logged in
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /portfolio/new
    • PortfolioForm
  • /stocks/:name
    • StockShow

Search is a dynamic dropdown on the dashboard which doesn't need a route

Clone this wiki locally