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>;
}