Answers for "onclick redirect to another path in app component using react js"

2

react redirect on click

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

function app() {
  let history = useHistory();

  const redirect = () => {
    history.push('/your-path')
  }

  return (
    <div>
      <button onClick={redirect}>Redirect</button>
    </div>
  )
}
Posted by: Guest on February-08-2021
0

redirect to another path react

<span className="input-group-btn">
  <Link to="/login" />Click to login</Link>
</span>
Posted by: Guest on May-11-2021

Code answers related to "onclick redirect to another path in app component using react js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language