quintodrome/ui/src/utils/openInNewTab.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
96 B
JavaScript
Raw Normal View History

2021-06-09 18:35:20 -08:00
export const openInNewTab = (url) => {
const win = window.open(url, '_blank')
win.focus()
}