<Router>
<Routes>
<Route path="users" element={<Users />} />
<Route path="posts" element={<Posts />} />
<Route path="" element={<Redirect to="/users" />} />
</Routes>
</Router>
I've just upgraded to React Router v6 and my Redirect isn't working. I'm a beginner and just started learning React, it's a bit hard for me to wrap my head around it, thanks for any help