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...
React Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
React
Why can a Server Component's function body directly await a database call, when an ordinary component's render cannot be async?
A
Server Components use a completely different JavaScript engine
B
A Server Component runs once, server-side, per request — not repeatedly and interactively like a Client Component re-rendering in the browser
C
await is not actually allowed in Server Components either
D
Server Components don't follow the Rules of Hooks
Check Answer