23 lines
461 B
Svelte
23 lines
461 B
Svelte
<script lang="ts">
|
|
export let name: string;
|
|
</script>
|
|
|
|
<main>
|
|
<h1 class="bg-gray-400">Hello {name}!</h1>
|
|
<p>
|
|
Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn
|
|
how to build Svelte apps.
|
|
</p>
|
|
</main>
|
|
|
|
<style global lang="postcss">
|
|
/* only apply purgecss on utilities, per Tailwind docs */
|
|
/* purgecss start ignore */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
/* purgecss end ignore */
|
|
|
|
@tailwind utilities;
|
|
|
|
</style>
|
|
|