fieldsValues = this.props.fields.reduce((a, v) => {
    a[v.name] = { value: "", error: !"".match(v.regexValidation) };
    return a;
  }, {});