---
const { title, name } = Astro.props as { title: string; name: string };
---

<label>
  {title}
  <input type="number" name={name} />
</label>
