May 2018
Intermediate to advanced
470 pages
13h 54m
English
To take the user to the new media form view when they click the Add Media link, we will update the MainRouter file to add the /media/new React route, which will render the NewMedia component.
mern-mediastream/client/MainRouter.js:
<PrivateRoute path="/media/new" component={NewMedia}/>
As this new media form should only be accessed by a signed-in user, we will add it as a PrivateRoute.
Read now
Unlock full access