2.0.0 • Published 7 years ago

react-submittable v2.0.0

Weekly downloads
946
License
ISC
Repository
github
Last release
7 years ago

react-submittable

build status Coverage Status

Stop using preventDefault to get form behavior in React.

<Submittable
  onEnter={this.onEnter}
  onCancel={this.onCancel}>
  <input type='text' />
</Submittable>

The Submittable component simulates the same enter & escape behaviors you would get with the submit event of an HTML form, without having to shut down the default behavior. It also catches the escape key and calls an onCancel event when it sees it.

install

npm install --save react-submittable