2020-06-13a few seconds read (About 49 words)How to go back to home in ReactIssue #665 Usually in header we have logo that takes user back to the home page 1234567891011121314// index.jsimport { BrowserRouter as Router, Switch, Route, Link} from 'react-router-dom'<Router> <Switch> <Route exact path="/"> <Home /> </Route></Router> 12345678// Header.jsimport { useHistory } from 'react-router-dom'const history = useHistory()<a class="navbar-item" onClick={() => { history.push('/')}}>#react