0.0.3 • Published 5 years ago

@saber2pr/use-reducer v0.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

@saber2pr/use-reducer

npm i @saber2pr/use-reducer

API

export const initState = {
  current: 100,
  delta: 1
}

export const [getState, useReducer] = createStore(state)

// useReducer
const [state, dispatch] = useReducer(reducer, initialState)
// const [state, dispatch] = useReducer(reducer, initialState, initialAction)

// getState
const globalState = getState()

Author

saber2pr