scrimba
Learn Svelte
Importing and exporting
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Importing and exporting
AboutCommentsNotes
Importing and exporting
Expand for more info
App.svelte
run
preview
console
<script>
let say = 'hi';
setTimeout(() => {
say = 'bye';
}, 1000)
</script>

<style>
div {
color: red;
}
:global(div) {
background: blue;
}
</style>

<div>
Say: {say}
</div>
Console
/index.html
-2:38