Refactor for readability

This commit is contained in:
Deluan
2021-06-09 22:35:20 -04:00
parent 7f85ecd515
commit 2afb2db7ef
8 changed files with 193 additions and 187 deletions
+4
View File
@@ -0,0 +1,4 @@
export const openInNewTab = (url) => {
const win = window.open(url, '_blank')
win.focus()
}