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...
Next.js Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
hard
Next.js
A Server Component needs to share fetched data with several Client Components deep in the tree without prop-drilling. What's a documented pattern for this?
A
Making the Server Component itself a Client Component
B
Combining React.cache with a Client Component context provider that receives the (unawaited) promise, letting Client Components read it via use()
C
Using localStorage
D
This isn't possible in the App Router
Check Answer