Skip to content

Commit 06c787b

Browse files
committed
fixed typos in examples
1 parent ab99be7 commit 06c787b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const MyApp = React.createClass({
2424

2525
handleChange(newValue){
2626
this.setState({amount: newValue});
27-
}
27+
},
2828
render() {
2929
return (
3030
<div>
@@ -47,7 +47,7 @@ const MyApp = React.createClass({
4747
handleSubmit(event){
4848
event.preventDefault();
4949
console.log(this.refs.myinput.getMaskedValue())
50-
}
50+
},
5151
render() {
5252
return (
5353
<form onSubmit={this.handleSubmit}>

0 commit comments

Comments
 (0)