Skip to content

Frontend Routes

Micah Jaffe edited this page Dec 11, 2018 · 3 revisions

Main component organization:

  • Root
    • App
      • Navbar
      • Main component
      • Footer

Main components (routes defined in App)

  • /
    • Splash
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /notebooks/:notebookId (main app page)
    • NotesIndex -- filtered to only selected notebook
      • NotesIndexItem
    • NoteForm -- create new note in selected notebook
      • TagForm -- create new tag for selected note
  • /notebooks (notebooks index page)
    • NotebookIndex
      • NotebookIndexItem
  • /tags (tags index page)
    • TagsIndex
      • TagsIndexItem
  • /notes (post-MVP, for All Notes feature)
    • NotesIndex
      • NotesIndexItem
    • NoteForm
Clone this wiki locally