| Total Complexity | 1 |
| Complexity/F | 1 |
| Lines of Code | 19 |
| Function Count | 1 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 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 |