DEV Community

Discussion on: 🔐 Private Route in React Router v6

Collapse
 
haiderali22 profile image
haiderali22

How can I use this with useRoutes hook provided in react router v6

Collapse
 
iamandrewluca profile image
Andrei Luca
useRoutes([
  {
    path: "/private",
    element: (
      <PrivateRoute>
        <Private />
      </PrivateRoute>
    ),
  },
]);
Enter fullscreen mode Exit fullscreen mode