import { useNavigate, useLocation, useParams } from 'react-router-dom'; export function withRouter(Component) { function ComponentWithRouterProp(props) { const navigate = useNavigate(); const location = useLocation(); const params = useParams(); return ( ); } return ComponentWithRouterProp; }