Skip to content

react-inputs-validation v1.0.2

Compare
Choose a tag to compare
@edwardfxiao edwardfxiao released this 16 Jul 03:14
· 269 commits to master since this release
a2e31e4
  • Enable passing e as a parameter. eg.
  onChange={(name, e) => {
    this.setState({ name });
    console.log(e);
  }}
  onBlur={(e) => {console.log(e)}}