Simple question: if i want to use withStateHandlers instead of the couple withState/withHandlers. What is the equivalant of this :
withState('value', 'updateValue', ''),
withHandlers({
onChange: ({updateValue}) => event => updateValue(event.target.value)
})
Thanks for your answer :)
withStateHandlers
doesn't have namedstateUpdater
(likeupdateValue
in your case), so you need to interact with the state directly.