<form ref="myform" onSubmit={handleSubmit(this.handleFormSubmit.bind(this))}>
...
</form>
onSomeClick() {
const {store} = this.context;
const state = store.getState();
let data = getFormValues('form-id')(state);
this.handleFormSubmit(data);
}
static contextTypes = {store: PropTypes.object};