svelte-demo / src /App.svelte
julien-c's picture
julien-c HF Staff
cooler app w/ color shadows 🔥
9490727 verified
raw
history blame contribute delete
399 Bytes
<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>