Completed
Push — master ( c12867...9cb664 )
by Junior
28s
created

???.getComponent   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
c 0
b 0
f 0
nc 1
dl 0
loc 3
rs 10
nop 1
1
export default {
2
    path : 'about',
3
4
    getComponent(nextState, cb) {
5
        require.ensure([], (require) => {
6
            cb(null, require('./index').default)
7
        })
8
    }
9
}
10