mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-08-18 16:37:18 +02:00
9 lines
170 B
Svelte
9 lines
170 B
Svelte
<script>
|
|
export let name = 'World';
|
|
console.log(name);
|
|
</script>
|
|
|
|
<main class="text-gray-900 dark:text-gray-100 transition-colors duration-200">
|
|
Hello {name}!
|
|
</main>
|