summaryrefslogtreecommitdiff
path: root/examples/container-with-vitest/src/components/CounterLight.astro
blob: 7cee23bbea252276701cea66e76d2237ea2f8abb (plain) (blame)
1
2
3
4
5
6
7
8
9
---
interface Props {
	count?: number;
}

let { count = 0 } = Astro.props;
---

<p id="counter">{count}</p>