--- import HtmlFragment from "./HtmlFragment.astro"; interface Props { title: string; description?: string; } const { title, description } = Astro.props as Props; ---

{description &&

{description}

}