| 2 | import ReactDOM from 'react-dom'; |
| 3 | |
| 4 | class App extends React.Component { |
| 5 | constructor(props) { |
| 6 | super(props); |
| 7 | this.state = { |
| 8 | }; |
| 9 | } |
| 10 | render() { |
| 11 | return ( |
| 12 | <div> |
| 13 | <h1>Hello, World!</h1> |
| 14 | </div> |
| 15 | ); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | ReactDOM.render(<App />, document.getElementById('app')); |
nothing calls this directly
no outgoing calls
no test coverage detected