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
/
main.ts
coyotte508
Svelte template
150e09e
18 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
173 Bytes
import
{ mount }
from
'svelte'
import
'./app.css'
import
App
from
'./App.svelte'
const
app =
mount
(
App
, {
target
:
document
.
getElementById
(
'app'
)!,
})
export
default
app