DEV Community

Discussion on: Built my first chat-app with React Hooks exclusively. It was great.

Collapse
 
gerreth profile image
Gerret Halberstadt

Hooks are awesome, but as a side note, they are not a replacement for redux or mobx. useState simplifies your local state management and useEffect replaces your lifecycle methods.

Collapse
 
mgranados profile image
Martín Granados García

Agree with you! My point is that they can suffice for apps simple enough.