react-state-util

0.0.5 • Public • Published

react-state-util

Add global state to React (like root style in AngularJS but keep the React philosophie)

ConnectGlobalState

Usage

  • Connect Component to state global
  class App extends Component {
      render() {
          return (
              <div>
                  <h3>App Component</h3>
                  <button onClick={ ()=>this.setGlobalState({name:'Huan Nguyen'}) }>Change Name</button>
                  <div>Hello {this.globalState.name || 'Phong' }</div>
              </div>
          );
      }
  }

  export default connectGlobalState(App);
  • Set state global this.setGlobalState({ [stateName]:[stateValue] })
 this.setGlobalState({name:'Bob'})
  • Get state global this.globalState.[stateName]
this.globalState.name //Bob

Readme

Keywords

Package Sidebar

Install

npm i react-state-util

Weekly Downloads

0

Version

0.0.5

License

MIT

Unpacked Size

6.93 kB

Total Files

5

Last publish

Collaborators

  • hthieu1110