Frontend Routes and Components - RawBData/Checkoff GitHub Wiki
Frontend Routes
The components are organized as follows:
- Root- App- NavBar
- (main component goes here)
- Footer
 
 
The routes, defined in App, will render components between NavBar and Footer.
- /- land
 
- /login- SessionForm
 
- /signup- SessionForm
 
- /list/:listId- List- Tasks- Task
 
 
 
- /list/new- listForm
 
- /list/:listId/edit- listForm
 
- /tasks/new- TaskForm
 
- /tasks/:taskId- TaskShow
 
- /tasks/:taskId/edit- TaskForm