Sometimes, for example on a login, you want to redirect the User to another page in your application.
We assume that your Application has the default address of http://localhost:3000.
In this example, the application has the path localhost:3000 and you can navigate to the news with /news.
import {Redirect} from "react-router-dom";
//... your program code goes here...
return(
<Redirect to='news'/>
);
The return statement will redirect to localhost:3000/news