Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
julien-c
/
vite-svelte
like
2
Running
App
Files
Files
Community
d6aed03
vite-svelte
/
src
/
lib
/
Counter.svelte
julien-c
HF Staff
initial import
258f908
verified
29 days ago
raw
Copy download link
history
blame
Safe
167 Bytes
<
script
lang
=
"ts"
>
let
count
: number = $state(
0
)
const
increment
= (
) =>
{
count += 1
}
</
script
>
<
button
onclick
=
{increment}
>
count is
{count}
</
button
>