React Router browserHistory.push open link in a new tab
React-router is build on the browser History API.
browserHistory.push
calls pushState()
method.
From the first line of the linked document:
pushState( ) takes three parameters: A state object, a title (which is currently ignored), and (optionally) a Uniform Resource Locator (URL).
So, the answer to your question is "No".