Issue: Some components re-render unnecessarily (seen via React DevTools)
Action:
- Use
React.memo() for pure components
- Use
useMemo() and useCallback() where needed
- Break large components into smaller ones
✅ Expected: Lower CPU usage and smoother UI interactions @Shachindra