props.history.push

David ReederBy David Reeder, 10 July 2024

Tags: React

This has changed since React v6, try:

// Inside the function at the top
const navigate = useNavigate();

// Use this in replace of 'this.props.history.push('/add-employee');'
navigate('/add-employee');

Back