Example #1
0
 function HistoryHandler(props, context) {
     React.Component.apply(this, arguments);
 }
Example #2
0
 function Component() {
   React.Component.apply(this, arguments);
 }
Example #3
0
 function StoreConnector(props, context) {
     React.Component.apply(this, arguments);
     this.state = this.getStateFromStores();
     this._onStoreChange = null;
     this._isMounted = false;
 }
Example #4
0
 function Component() {
   React.Component.apply(this, arguments);
   this.state = {name: 'Giulio'};
 }
 /**
  * WindowResizeReporter constructor
  * @constructor
  */
 function WindowResizeReporter () {
   React.Component.apply(this, arguments);
 }