react-context-hook icon indicating copy to clipboard operation
react-context-hook copied to clipboard

feature request: useResetStore hook

Open Spyna opened this issue 5 years ago • 0 comments

A hook to reset the store:


function onClickHandler() {
  const initialValue = {
    user: null,
    loggedIn: false
  }
  useResetStore(initialValue)
}

Spyna avatar Apr 28 '20 20:04 Spyna