feat: remove Counter component implementation

This commit is contained in:
sha
2025-06-20 14:14:52 +03:00
parent 69c4d2385c
commit 9bd17df4df
-10
View File
@@ -1,10 +0,0 @@
<script>
let count = $state(0)
const increment = () => {
count += 1
}
</script>
<button onclick={increment}>
count is {count}
</button>