Skip to main content

Component

Component.svelte
<script>
let s = 'text';
</script>

<div>
{s}
</div>

<style>
div {
color: blue;
}
</style>