Q:

this.props.history.location.push

import { useHistory } from "react-router-dom";

const FirstPage = props => {
    let history = useHistory();

    const someEventHandler = event => {
       history.push({
           pathname: '/secondpage',
           search: '?query=abc',
           state: { detail: 'some_value' }
       });
    };

};

export default FirstPage;

3
this.props.history.push({
  pathname: '/template',
  search: '?query=abc',
  state: { detail: response.data }
})
4
<Link to={{  pathname: "/register",  state: data_you_need_to_pass }}> Register</Link>
1
props.history.push({  pathname: '/register', state: data_you_need_to_pass});
0

New to Communities?

Join the community