Fix react cheatsheet spelling error: vlaue -> value

This commit is contained in:
james 2017-10-20 15:18:20 -07:00
parent b1a2733ed1
commit 12d7576bc4
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ class MyComponent extends React.Component {
} }
onChange (event) { onChange (event) {
this.setState({ value: event.target.vlaue }) this.setState({ value: event.target.value })
} }
} }
``` ```