--- interface Props { keywords: string[]; } const { keywords } = Astro.props; ---

{ keywords.map((x, i) => ( <>{i > 0 && " "}#{x} )) }