react-context-hook
react-context-hook copied to clipboard
feature request: useResetStore hook
A hook to reset the store:
function onClickHandler() {
const initialValue = {
user: null,
loggedIn: false
}
useResetStore(initialValue)
}