Check out example codes for "how to open new html page on button click". It will help you in understanding the concepts better.
Code Example 1
<!DOCTYPE html>
<html>
<head>
<script>
function openLink() {
window.open("https://www.w3schools.com");
}
</script>
</head>
<body>
<form>
<input type="button" value="Open Window" onclick="openWin()">
</form>
</body>
</html>
Learn ReactJs, React Native from akashmittal.com