|
|
|
|
|
by lj3
2691 days ago
|
|
> am simply using redux to manage all state This only works in small apps. I work on a medium sized app at work and we started that way too. It becomes a huge, sloppy mess in short order. Putting everything in Redux is akin to a desktop application that uses nothing but global state. Hooks are great because it keeps the state local, but it can be re-used across components if we need to. |
|