Re-initialize the store
Function that allows you to reset the store to the initial value passed to the cervello
function.
- TypeScript
- JavaScript
const { reset } = cervello({ fullName: '', email: '' })
const LogoutButton = () => (
<button onClick={reset}>
Logout
</button>
)
const { reset } = cervello({ fullName: '', email: '' })
const LogoutButton = () => (
<button onClick={reset}>
Logout
</button>
)