1 2 3 4 5 6 7 8 9
--- interface Props { count?: number; } let { count = 0 } = Astro.props; --- <p id="counter">{count}</p>