You can also use the useHistory hook in a stateless component. Example from the docs.
import { useHistory } from "react-router"
function HomeButton() {
const history = useHistory()
return (
)
}
Note: Hooks were added in react-router@5.1.0 and require react@>=16.8