Skip to content

Commit 8f45917

Browse files
committed
Fix test
1 parent 82c9ec4 commit 8f45917

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "react-toolbox-starter-kit",
33
"description": "Modern React starter kit for Google Material Design",
4-
"version": "0.9.0",
5-
"author": "Dev-Guy <[email protected]>, building on work by demian florentin <[email protected]>",
4+
"version": "1.0.0",
5+
"author": "Dev-Guy <[email protected]>, building on work by Demian Florentin <[email protected]>",
66
"keywords": [
77
"react",
88
"react-router",

src/components/login.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ class LoginForm extends Component {
1111
this.submitForm = this.submitForm.bind(this);
1212
}
1313

14-
//handleChange(name, value){
15-
// let d = this.state[name]= value;
16-
//};
14+
handleChange(name, value){
15+
let d = this.state[name]= value;
16+
};
1717

1818
submitForm (){
1919
console.log('submit form');

0 commit comments

Comments
 (0)