Passed
Pull Request — develop (#30)
by
unknown
13:58 queued 07:04
created

src/HelloWorld.tsx   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 19
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 10
mnd 0
bc 0
fnc 1
dl 0
loc 19
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
ccs 1
cts 1
cp 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A HelloWorld.render 0 5 1
1
import React from 'react';
2
3
interface Properties {
4
5
}
6
7
interface State {
8
9
}
10
11
export default class HelloWorld extends React.Component<Properties, State> {
12
  render(): React.ReactElement {
13 1
    return <h3>
14
      A new decade ... a new start ... 😉<br /><br />
15
      Hello from <code>HelloWorld.tsx</code>!
16
    </h3>;
17
  }
18
}
19