This https://stackoverflow.com/a/11384018/7697399 answer helped me out and worked flawlessly. This could be done without the help of react-router.
function openInNewTab(url) {
var win = window.open(url, '_blank');
win.focus();
}
This https://stackoverflow.com/a/11384018/7697399 answer helped me out and worked flawlessly. This could be done without the help of react-router.
function openInNewTab(url) {
var win = window.open(url, '_blank');
win.focus();
}