(props: T)
| 35 | resizeTimer?: any; |
| 36 | |
| 37 | constructor(props: T) { |
| 38 | super(props); |
| 39 | |
| 40 | this.divRef = React.createRef(); |
| 41 | |
| 42 | this.reFetchData = this.reFetchData.bind(this); |
| 43 | this.reload = this.reload.bind(this); |
| 44 | |
| 45 | this.resize = this.resize.bind(this); |
| 46 | } |
| 47 | |
| 48 | reFetchData() {} |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected