history.push with parameter and access it in reacrt code example
Example 1: passing data in react router history,push
this.props.history.push({
pathname: '/template',
search: '?query=abc',
state: { detail: response.data }
})
Example 2: history.push with params
import { useEffect } from "react";
import { useLocation } from "react-router-dom";
const SecondPage = props => {
const location = useLocation();
useEffect(() => {
console.log(location.pathname);
console.log(location.search);
console.log(location.state.detail);
}, [location]);
};