Frontend Routes - n8gallagher/fotopx GitHub Wiki
The components are organized in this fashion in our html:
Root
App
Nav Bar
(main component)
Footer
These below routes, defined in App
, render components on the page between NavBar
and Footer
.
/
Home
/login
SessionForm
/signup
SessionForm
/users/:userId
ProfileComponent
/users/:userId/followers
FollowersComponent
/users/:userId/following
FollowingComponent
PhotoIndex
PhotoIndexItem
/photos/new
PhotoForm
/photos/:photoId
PhotoShow
/photos/:photoId/edit
PhotoForm