Update for React Router version 6:
The various answers here are like a timeline of react-router's evolution
Using the latest hooks from react-router v6, this can now be done easily with the useNavigate
hook.
import { useNavigate } from 'react-router-dom'
function MyLinkButton() {
const navigate = useNavigate()
return (
<button onClick={() => navigate("/home")}>
Go Home
</button>
);
}