I have a react
function called bound on the constructor that gets called on the click of an "update" button. Within that update method, I want to do a simple HTTPS get request something like this
xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET","https://test", true)
xmlHttp.send(null)
enter code here
But I want to open a new tab when it does this I have not imported Axios or anything else.