Global state using Context & Hooks APIs
Global state using Context & Hooks APIs
This project uses node and npm.
$ npm install react-global-state-lib
$ # OR
$ yarn add react-global-state-lib
import React, { Component } from 'react'
import initGlobalState from 'react-global-state-lib'
const {GlobalStateProvider, useGlobalState} = initGlobalState({
count: 1, // initial state
})
function Counter() {
const [global, setGlobalState] = useGlobalState()
return <h1>{global.count}</h1>
}
function IncrementBtn() {
const [global, setGlobalState] = useGlobalState()
return (
<button type="button" onClick={() => setGlobalState({count: global.count + 1})}>
+
</button>
)
}
function App() {
return (
<GlobalStateProvider>
<Counter ></Counter>
<Counter ></Counter>
<Counter ></Counter>
<IncrementBtn ></IncrementBtn>
</GlobalStateProvider>
)
}
export default App
git checkout -b my-new-feature
git commit -am "Add some feature"
git push origin my-new-feature
MIT © tiaanduplessis