href pada tombol
<button onclick="window.location.href='/page2'">Continue</button>
STIFLER
<button onclick="window.location.href='/page2'">Continue</button>
<button onclick="location.href='http://www.example.com'" type="button">
www.example.com</button>
<a href="https://www.google.com">
<button>Go to Google</button>
</a>
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<form>
<input type="button" onclick="window.location.href = 'https://www.w3docs.com';" value="w3docs"/>
</form>
</body>
</html>
<button class="btn btn-success" onclick="location.href='http://google.com';"> Google</button>
#open link from button
onClick={() => {window.location.href="https://www.golfballs.com/"}}