In React, I rarely have perf issues


In React, I rarely have perf issues. But I recently used context to resolve a perf issue:

I used context to avoid passing props to a component that was merely passing data down. That component was expensive to render. Thus, doing so significantly improved performance.

View original on X