Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
static-templates
/
svelte
like
0
Running
App
Files
Files
Community
main
svelte
/
src
/
lib
/
Counter.svelte
coyotte508
Svelte template
150e09e
24 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
>