Spaces:
Running
Running
File size: 399 Bytes
b8b1de1 9490727 51a3c5e 9490727 b8b1de1 9490727 51a3c5e 9490727 b8b1de1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<script lang="ts">
import Nested from "./Nested.svelte";
export let name = "World";
const colors = ["cyan", "blue", "indigo"];
</script>
<main class="m-3">
<h1 class="text-red-400 font-mono">Hello {name}!</h1>
<p>
Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn
how to build Svelte apps.
</p>
{#each colors as color}
<Nested {color} />
{/each}
</main>
|