React >> Return with parenthesis
var MyComponent = React.createClass({
// Return an object {} of JavaScript
getInitialState: function(){
return {
count: 5
}
},
// Return a component () of JSX
render: function(){
return (
<h1>{this.state.count}</h1>
)
}
});