DEV Community

Discussion on: React hooks & the closure hell

Collapse
 
ntvinhit profile image
Nguyễn Trọng Vĩnh

How can I use effect in this?
Or just with normal useEffect with dependencies [self.state.value]?

Collapse
 
anpos231 profile image
anpos231

useEffect with dependencies [self.state.value]

Should work fine.

But I advise you try the new, cleaner version: dev.to/anpos231/react-hooks-the-cl...