Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 15 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 8 | ||
Bugs | 1 | Features | 0 |
1 | import { createBrowserHistory, createHashHistory, createMemoryHistory } from 'history'; |
||
2 | |||
3 | |||
4 | export const History = { |
||
5 | createBrowserHistory, |
||
6 | createHashHistory, |
||
7 | createMemoryHistory |
||
8 | }; |
||
9 | |||
10 | export { default as ACTION_TYPES } from './actionTypes'; |
||
11 | export { default as actionTypes } from './actionTypes'; |
||
12 | export { default as createRouter } from './router'; |
||
13 | export * as actions from './actions'; |
||
14 | export { Link } from './components'; |
||
15 | export { RouterProvider } from './components'; |
||
16 | export { Fragment } from './components'; |
||
17 |