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
+1
View File
@@ -2,3 +2,4 @@ export * from './baseUrl'
export * from './docsUrl'
export * from './formatters'
export * from './notifications'
export * from './openInNewTab'
+4
View File
@@ -0,0 +1,4 @@
export const openInNewTab = (url) => {
const win = window.open(url, '_blank')
win.focus()
}