I have the following widget class:
var Widget = React.createClass({
statics: {title: "a title"},
...
});
Is there a way of accessing the title static inside the class'es methods (using this)? For example:
render: function() {
return <div>{this.title}</div>;
}