Concept Flow - Server component database queries
Start Server Component Render
Run async DB Query
Wait for DB Response
Receive Data
Render JSX with Data
Send HTML to Client
End
This flow shows how a Next.js server component fetches data from a database asynchronously, waits for the data, then renders the UI with that data before sending HTML to the client.