onDrop = ({ id }: Object) => {
    const sections = this.props.sections.find(o => o.id === id);
    this.props.actions.updateSection(sections);
  };