Answers for "getSnapshotBeforeUpdate(prevProps) { return { notifyRequired: prevProps.text !== this.props.text }; }"

2

component did update arguments

componentDidUpdate(prevProps, prevState) {
  // only update chart if the data has changed
  if (prevProps.data !== this.props.data) {
    this.chart = c3.load({
      data: this.props.data
    });
  }
}
Posted by: Guest on October-05-2020

Browse Popular Code Answers by Language