how to redirect to component in history push code example
Example 1: 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]);
};
Example 2: this.props.history.location.push
<Link to={{ pathname: "/register", state: data_you_need_to_pass }}> Register</Link>