I have a class that looks like this :
var GridBox = React.createClass({
loadLoadDataFromServer: function(modifier) {
},
handlePaging: function(modifier) {
},
getInitialState: function() {
},
render: function(){
return (
);
}
});
How do I add a variable within this class that all of the functions can use?