Skip to main content

Re-initialize the store

Function that allows you to reset the store to the initial value passed to the cervello function.

const { reset } = cervello({ fullName: '', email: '' })

const LogoutButton = () => (
<button onClick={reset}>
Logout
</button>
)