Passed
Push — develop ( 9011bf...5a7fee )
by Endre
03:38
created

HelloWorld   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 7
ccs 1
cts 1
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A render 0 5 1
1
import React from 'react';
2
3
interface IProperties {
4
5
}
6
7
interface IState {
8
9
}
10
11
export default class HelloWorld extends React.Component<IProperties, IState> {
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
}