DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
Frontend Performance Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
Frontend Performance
What is the actual fix for the context-bypass-memo problem, since React.memo itself cannot address it?
A
There is no possible fix — context always defeats memoization
B
Splitting one large, multi-concern context into several narrower, independently-changing contexts, so a component only subscribes to (and re-renders from) the specific slice it actually uses
C
Removing React.memo entirely and never using it near any context
D
Converting all context consumers to class components
Check Answer