19 lines
226 B

<script>
let count = 0;
function incrementCount() {
count += 1;
}
</script>
<button on:click={incrementCount}>
Clicked {count}
{count === 1 ? 'time' : 'times'}
</button>
<style>
button {
width: 200px;
}
</style>