|
|
|
|
|
by jbhoot
603 days ago
|
|
> all data manipulation (∆) happens outside of React components, I do something similar. State and its management lives outside the React components, which only consume this state via hooks. Keeping the state in chunks, and outside the tree lets me access a chunk of state only in the components that need it. This results into minimum amount of re-rendering of components. Component code also looks cleaner and easier to read. |
|