I'm new to react redux and building my first web app.
So I created Router and added the specific pages:
<Switch>
<Route path="/">
<Home />
</Route>
<Route path="/Info/:id/:name/:type">
<Info />
</Route>
</Switch>
When I have path="/" and path="/Info/:id/:name/:type", it does not work. But when I have something like
path="/Home", path="/Info/:id/:name/:type", it works very well. Am I doing something wrong?