constructor()

in mpush_reactnative_android_demo/AwesomeProject/index.android.js [25:39]


   constructor(props, context) {
    	super(props, context);
	    this.state = {
	      deviceIdBtnTitle: 'GET DEVICE_ID',
	      accountToBind: 'ACCOUNT TO BIND',
	      tagToAdd: 'TAG TO ADD/DELETE',
	      loaded: false,
	      initInfo: 'Loading...',
	    };
	     this.onDeviceIdClicked = this.onDeviceIdClicked.bind(this);
	     this.onAccountBindClicked = this.onAccountBindClicked.bind(this);
	     this.onAccountUnbindClicked = this.onAccountUnbindClicked.bind(this);
	     this.onAddTagClicked = this.onAddTagClicked.bind(this);
	     this.onDeleteTagClicked = this.onDeleteTagClicked.bind(this);
	  }