1
0
Fork 0
mirror of https://github.com/dancojocaru2000/foxbank.git synced 2025-05-04 02:09:54 +03:00
foxbank/client/src/App.svelte

19 lines
440 B
Svelte
Raw Normal View History

2021-11-14 15:13:40 +02:00
<script>
import Card from "./Card.svelte";
export let name;
</script>
<main>
<h1 class="text-yellow-400">Hello {name}!</h1>
<p>Visit the <a href="https://svelte.dev/tutorial">Svelte tutorial</a> to learn how to build Svelte apps.</p>
<Card title="Test" text="123"></Card>
<Card title="Test 2" text="Hello, world!"></Card>
</main>
<style global lang="postcss">
@tailwind base;
@tailwind components;
@tailwind utilities;
</style>