Removed JSX elements.

This commit is contained in:
Giedrius Grabauskas
2015-11-25 02:33:58 +02:00
parent 66f52639ef
commit f67ea5412d
+1 -1
View File
@@ -119,7 +119,7 @@ class CounterContainer extends Component {
}
render() {
return <span>{this.state.counter}</span>;
return this.state.counter;
}
}