svelte-demo / src /App.svelte
julien-c's picture
julien-c HF Staff
Use Play CDN for Tailwind
51a3c5e verified
raw
history blame
236 Bytes
<script lang="ts">
export let name = "World";
</script>
<main>
<h1 class="text-red-300">Hello {name}!</h1>
<p>
Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn
how to build Svelte apps.
</p>
</main>