Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
iosono2
/
tottol
like
0
No application file
App
Files
Files
Community
main
tottol
/
src
/
lib
/
Counter.svelte
iosono2
Duplicate from static-templates/svelte
418ab09
about 15 hours ago
Raw
Download with hf CLI
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
>