DEV Community

Discussion on: Can React state management get any simpler than this?

Collapse
 
motss profile image
Rong Sen Ng

Perhaps counter.value instead of counter.get()

Collapse
 
arnelenero profile image
Arnel Enero • Edited

Actually counter.set(value => value + by) format is also supported. Would that have been a better/simpler example?

I edited the example code to show this alternative format, too.