mirror of
https://github.com/dancojocaru2000/foxbank.git
synced 2025-04-21 02:33:54 +03:00
11 lines
No EOL
214 B
Svelte
11 lines
No EOL
214 B
Svelte
<script>
|
|
export let title;
|
|
export let text;
|
|
</script>
|
|
|
|
<main>
|
|
<figure class="bg-gray-100 rounded-xl p-3 m-2">
|
|
<h1 class="text-lg font-bold">{title}</h1>
|
|
<p class="text-gray-900">{text}</p>
|
|
</figure>
|
|
</main> |