Completed
Push — master ( c964f2...00857b )
by Vitaly
02:32
created

src/index.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 15
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 8
Bugs 1 Features 0
Metric Value
cc 0
wmc 0
c 8
b 1
f 0
nc 1
mnd 0
bc 0
fnc 0
dl 0
loc 15
rs 10
bpm 0
cpm 0
noi 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