Skip to content

Frontend Routes

Andre Souza edited this page Sep 20, 2020 · 4 revisions

Frontend Routes

Components

  • Root
    • Auth
      • NavBar
      • routed component
    • App
      • SideBar
      • routed components

Routes

  • /
    • NavBar
    • Splash
  • /login
    • Auth
      • LoginForm
  • /signup
    • Auth
      • SignUpForm
  • /app
    • SideBar
      • TagsDrawer
        • TagIndexItem
        • TagForm modal
    • routed components
  • /app/notes
    • NotesIndex
      • NotesIndexItem
    • NoteEditForm for the first note
  • /app/notebooks/index
    • NotebookIndex
      • NotebookIndexItem
        • NotebookNotes
          • NotebookNotesItem
    • NotebookForm modal
  • /app/notebooks/:id/notes
    • NotesIndex
      • NotesIndexItem
    • NoteEditForm for the first note
  • /app/tags/:id/notes
    • NotesIndex
      • NotesIndexItem
    • NoteEditForm for the first note
Clone this wiki locally