Skip to main content
Journey Uncommon Logo
JourneyUncommon
hardReactServer Components use clientSingle-choice MCQ

In the React Server Components model, why does a module with the `"use client"` directive at its top NOT prevent the component's imports from running on the server during a build/request?

// banner.tsx "use client"; import { formatPrice } from "./utils"; export function Banner({ price }) { return <div>{formatPrice(price)}</div>; }