We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02687aa commit 02f82fdCopy full SHA for 02f82fd
README.md
@@ -39,11 +39,13 @@ import React from 'react'
39
import ReactInputHandler from 'react-input-handler'
40
41
class Form extends React.Component {
42
+
43
constructor(props) {
44
super(props)
45
this.inputHandler = ReactInputHandler.bind(this)
46
this.handleSubmit.bind(this)
47
}
48
49
render() {
50
return (
51
<form>
@@ -64,8 +66,9 @@ class Form extends React.Component {
64
66
handleSubmit(event) {
65
67
event.preventDefault()
68
console.log(this.state)
- // Output: { fullanme: "", bio: "", developer: "" }
69
+ // Output: { fullanme: "string", bio: "string", developer: true|false }
70
71
72
73
```
74
0 commit comments