项目作者: tiaanduplessis

项目描述 :
Global state using Context & Hooks APIs
高级语言: JavaScript
项目地址: git://github.com/tiaanduplessis/react-global-state-lib.git
创建时间: 2019-02-11T14:40:04Z
项目社区:https://github.com/tiaanduplessis/react-global-state-lib

开源协议:MIT License

下载


react-global-state-lib

package version
package downloads
standard-readme compliant
package license
make a pull request JavaScript Style Guide

Global state using Context & Hooks APIs

Table of Contents

Install

This project uses node and npm.

  1. $ npm install react-global-state-lib
  2. $ # OR
  3. $ yarn add react-global-state-lib

Usage

  1. import React, { Component } from 'react'
  2. import initGlobalState from 'react-global-state-lib'
  3. const {GlobalStateProvider, useGlobalState} = initGlobalState({
  4. count: 1, // initial state
  5. })
  6. function Counter() {
  7. const [global, setGlobalState] = useGlobalState()
  8. return <h1>{global.count}</h1>
  9. }
  10. function IncrementBtn() {
  11. const [global, setGlobalState] = useGlobalState()
  12. return (
  13. <button type="button" onClick={() => setGlobalState({count: global.count + 1})}>
  14. +
  15. </button>
  16. )
  17. }
  18. function App() {
  19. return (
  20. <GlobalStateProvider>
  21. <Counter ></Counter>
  22. <Counter ></Counter>
  23. <Counter ></Counter>
  24. <IncrementBtn ></IncrementBtn>
  25. </GlobalStateProvider>
  26. )
  27. }
  28. export default App

Contribute

  1. Fork it and create your feature branch: git checkout -b my-new-feature
  2. Commit your changes: git commit -am "Add some feature"
  3. Push to the branch: git push origin my-new-feature
  4. Submit a pull request

License

MIT © tiaanduplessis