Skip to content

Commit 72c037b

Browse files
committed
init RouterUtils
1 parent 417c4a7 commit 72c037b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/router/utils/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/**
2+
* Routes UTILS.
3+
*/
4+
let UTILS = {
5+
navigarion: {
6+
github: () => {
7+
window.location.replace("https://github.com/myfirebase/myfirebase")
8+
},
9+
docs: () => {
10+
window.location.replace("https://myfirebase.github.io")
11+
}
12+
}
13+
}
14+
15+
export default UTILS;

0 commit comments

Comments
 (0)