Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAlfredo Araujo
12,388 PointsThis course finish here? because doesn't redirect to nowhere
This course finish here? because doesn't redirect to nowhere
1 Answer
Mark Westerweel
Full Stack JavaScript Techdegree Graduate 22,378 PointsIf it's about the course, might be browser settings. I know right click new tab leads to 404 in this case.
the " I got it " link brought me to the next part :
Tadeas Ondrejicka
14,279 PointsTadeas Ondrejicka
14,279 PointsHi Alfredo, It looks like i had the same problem like you, solution is very simple. You need to define in PrivateRoute.js function PrivateRoute and then to export it.
In PrivateRoute.js : const PrivateRoute = ({componet: Component, ...rest}) => { .... }; export default PrivateRoute;
In App.js : import PrivateRoute from "./PrivateRoute";
and thats it i hope it will help.