mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
20 lines
256 B
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>
|