Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Fraser
/
piclets
like
0
Running
App
Files
Files
Community
main
piclets
/
src
/
lib
/
Counter.svelte
Fraser
Duplicate from static-templates/svelte
5f585cd
verified
12 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
167 Bytes
<
script
lang
=
"ts"
>
let
count
: number = $state(
0
)
const
increment
= (
) =>
{
count += 1
}
</
script
>
<
button
onclick
=
{increment}
>
count is
{count}
</
button
>