❌ Avoid storing derived state like totals, filters, or counts in useState.

✅ Calculate derived values directly in render from the existing state or props.

Simple, clean, and avoids bugs caused by syncing issues!

Learn more here: https://react.dev/learn/you-might-not-need-an-effect
Post image

Comments