Passed
Pull Request — master (#9)
by Luís
09:02 queued 03:56
created

src/js/components/index.js   A

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 9
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 14.29%

Importance

Changes 3
Bugs 0 Features 1
Metric Value
cc 0
c 3
b 0
f 1
nc 1
dl 0
loc 9
ccs 1
cts 7
cp 0.1429
crap 0
rs 10
wmc 0
mnd 0
bc 0
fnc 0
bpm 0
cpm 0
noi 0
1
import App from "app";
2
import Application from "./Application";
3 4
import NotFound from "./NotFound";
4
5
require("./base/index");
6
require("./pages/index");
7
8
App.components.Application = Application;
9
App.components.NotFound = NotFound;
10
11