JSFiddle - React, Tailwind, and code Playground
HTML
<input type="button" onclick="myFunc();" value="open">
JavaScript
function myFunc(){
var w = window.open("http://google.ru","Google","width=800,height=600,resizable=yes,scrollbars=yes,status=yes")
w.focus()
}