allow a react route to be displayed under a condition code example
Example: login condition if and else in router dom of react jsx
let redirectToUrl;
if ( not logged in ) //check condition
{
redirectToUrl = <Redirect to={loginPage}/>;
}