Test Failed
Push — develop ( 836cd9...6ec826 )
by Endre
15:03
created

src/Settings.tsx   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 18
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A Settings.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 Settings extends React.Component<IProperties, IState> {
12
  render(): React.ReactElement {
13
    return <h3>
14
      This become the settings page 😉<br /><br />
15
      Hello from <code>Settings/Settings.tsx</code>!
16
    </h3>;
17
  }
18
}