Files
bun.sh/packages/bun-plugin-svelte/test/fixtures/foo.svelte

20 lines
256 B
Svelte

<script>
let name = "World";
</script>
<main class="app">
<h1>Hello {name}!</h1>
</main>
<style>
h1 {
color: #ff3e00;
text-align: center;
font-size: 2em;
font-weight: 100;
}
.app {
box-sizing: border-box;
}
</style>