Propriétés de la carte d'état à réagir-redux

J'ai un composant qui utilise state pour fournir des données à l'utilisateur. Par exemple <div>this.state.variableInState</div>. Ce composant peut envoyer une méthode (par exemple sur onClick action). Je suis actuellement à l'aide react-redux un connect méthode pour cartographier store à props. Est il possible que je peux setState après l'envoi?

//actions
export function executeAction() {
  return function (dispatch, getState) {
    dispatch({
      type: 'MY_ACTION',
      payload: axios.get('/some/url')
    });
  };
}
//reducer

export default function (state = {}, action) {
  switch (action.type) {
    case 'MY_ACTION_FULFILLED':
      return {...state, myVariable: action.payload.data}
  }
}
//component
class MyComponent extends Component {
  render() {
    (<div onClick={this.props.executeAction.bind(this)}>
      {this.state.variableInState}
      </div>)
  }

  someOtherMethod() {
    //I want to operate with state here, not with props
    //that's why my div gets state from this.state instead of this.props
    this.setState({variableInState: 'someValue'})
  }
}


export default connect((state, ownProperties) => {
  return {
    //So I want to change MyComponent.state.variableInState here
    //but this method updates MyComponent props only
    //What can I do?
    variableInProps: state.myVariable
  }
}, {executeAction})(MyComponent);