I know we can use a Link tag and pass in target="_blank" like
<Link to="/" target="_blank">Hello World</Link>
but I am having trouble finding out I can do that with this.props.history.push... I am using that to pass in a pathname and search string...
let searchString = queryString.stringify({
rangeEnd: data.programEnd,
});
this.props.history({
pathname: `/machines/${machineId}`,
search: searchString,
target: "_blank // need something like this, not seeing it in docs
});