I have the following piece of code, which receives a history object as prop:
const ChildComponent = ({ history }) => (
For React 16.8 with hooks:
... import {withRouter, RouteComponentProps} from 'react-router-dom'; ... const ChildComponent: React.FunctionComponent = ({history}) => { ... }