Is there a way to modify the page title with React-Router v4+?
<Route /> components have render property. So you can modify the page title when location changes by declaring your routes like that: <Route exact path=”/” render={props => ( <Page {…props} component={Index} title=”Index Page” /> )} /> <Route path=”/about” render={props => ( <Page {…props} component={About} title=”About Page” /> )} /> In Page component you can set … Read more