How does one go about opening a new tab with no URL in the address bar via an onClick event from a webpage as if you clicked on the "+" button to the right of all the tabs.
Yes, I can do onClick={() => window.open('', '_blank')}
to open a new tab without a URL. But that will result in about:blank
appearing in the address bar. Something I don't want. The new tab that opens should be exactly as if you clicked on the "+" button.
JFYI, I'll also be okay if instead of a new tab opening, the page where the onClick originated from becomes the blank page. As if you clicked the home button.