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 trial

JavaScript React Authentication (2019) React Router and Authentication Protect Routes that Require Authentication

This course finish here? because doesn't redirect to nowhere

This course finish here? because doesn't redirect to nowhere

Tadeas Ondrejicka
Tadeas Ondrejicka
14,279 Points

Hi 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.

1 Answer