add href link to button code example
Example 1: html button with link
<form action="https://google.com">
<input type="submit" value="Go to Google" />
</form>
Example 2: button with href
onClick={() => {window.location.href="https://www.golfballs.com/"}}
Example 3: button href
a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;
text-decoration: none;
color: initial;
}