--- export interface Props { title: string; to: string; } const { to, title } = Astro.props; const isExternal = to.startsWith('http'); --- { isExternal == true ? ( {title} → ) : ( {title} → ) }
{title} →