()
| 34 | } |
| 35 | |
| 36 | componentDidMount() { |
| 37 | this.fetchPage(); |
| 38 | this.onResize(); |
| 39 | this.fetchComponents(); |
| 40 | window.addEventListener('resize', throttle(this.onResize, 500)); |
| 41 | } |
| 42 | |
| 43 | componentDidUpdate(prevProps) { |
| 44 | const { countQuery } = this.props; |
nothing calls this directly
no test coverage detected