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 cached function accepts a `children` prop and simply passes it through in its returned JSX without reading its contents. What effect does this have on the cache entry?
A
It breaks caching entirely
B
None — as long as the JSX slot isn't directly introspected inside the cacheable function's body, its presence in the output doesn't affect the cache entry (a documented 'interleaving' pattern)
C
The children content is always recomputed on every request regardless of caching
D
This requires a special directive
Check Answer