addRow() {
    const position = this.props.selectedCell.length == 2 ? this.props.selectedCell[1] : null;
    const rows = addRow(this.props.rows, position);
    this.props.onChangeRows(rows);
  }