rowt/rot_app/src/routes/faq/FAQ.svelte

12 lines
242 B
Svelte
Raw Normal View History

2023-07-16 18:32:39 +02:00
<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>