--- export interface Props { targetDate: string; label?: string; } const { targetDate, label } = Astro.props; ---
{label && `${label} | `}{ new Date(targetDate).toLocaleDateString() } D-Day