--- import { l } from "../util/util"; import { capitalize } from "./admin/util"; interface Props { tag: string; noLink?: boolean; } const { tag, noLink } = Astro.props; --- { noLink ? ( {capitalize(tag)} ) : ( {capitalize(tag)} ) }