rowt/rot_app/src/routes/faq/FAQ.svelte
2023-07-16 18:32:39 +02:00

12 lines
242 B
Svelte

<script lang="ts">
export let question: string;
export let answer: string;
</script>
<div>
<h2 class="flex mb-4 text-lg font-bold text-primary-900">
{@html question }
</h2>
<p class="text-primary-950">{@html answer }</p>
</div>