this.state = {
perpage: 24,
}
onResize = () => {
this.setState(() => ({
/* ... */
}));
}
componentDidMount() {
window.addEventListener('resize', this.onResize);
this.onResize();
}
componentWillUnmount() {
window.removeEventListener('resize', this.onResize);
}