componentDidMount() {
this.props.loadData();
}
componentDidUpdate(prevProps) {
if (prevProps.data !== this.props.data) {
this.props.loadData();
}
}
componentDidUpdate(prevProps) {
if (!_.isEqual(prevProps.data, this.props.data)) {
this.props.loadData();
}
}