---
interface Props {
  words: number;
}

const { words } = Astro.props;
---

<span>{Math.round(words)} 字</span>
