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
easy
React
What does `<h1 className="title">Hi</h1>` compile to (modern automatic JSX runtime)?
A
It stays as JSX at runtime — browsers parse it directly
B
A call to jsx("h1", { className: "title", children: "Hi" }) — an ordinary function call producing a plain object
C
An HTML string
D
A DOM node created immediately
Check Answer