| 4 | import Render from './ScreenRender'; |
| 5 | |
| 6 | export default class Screen extends Base { |
| 7 | constructor (props) { |
| 8 | super(props); |
| 9 | } |
| 10 | |
| 11 | render () { |
| 12 | return Render.call(this, this.props, this.state); |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected