componentWillReceiveProps({ section }: PropsType) {
    if (section.id !== this.state.section.id) {
      this.setState({ section: { ...section } });
    }
  }