--- import { formatUSD } from "../lib/intake_manifest"; export interface Props { priceCents?: number; govFeeLabel?: string; note?: string; } const { priceCents, govFeeLabel, note } = Astro.props; const hasPrice = typeof priceCents === "number"; --- {hasPrice && ( )}