Skip to content

Frontend routes and components

ntomsho edited this page Mar 26, 2019 · 6 revisions

Components are organized as follows:

  • Root
    • App
      • Navbar
      • main component

The following routes, defined in App, will render components below the NavBar:

  • /
    • Splash
  • /login
    • SessionForm
  • /signup
    • SessionForm
  • /books
    • BookSearchIndex
      • BookIndexItem
  • /books/:bookId
    • BookComponent
    • ShelvesIndex
      • ShelfIndexItem
  • /users/:userId
    • ProfileComponent
    • ShelvesIndex
      • ShelfIndexItem
  • /users/:userId/shelves/:shelfId
    • BookSearchIndex
      • IndexBook
Clone this wiki locally