mirror of
https://github.com/ankitects/anki.git
synced 2025-12-10 21:36:55 -05:00
15 lines
223 B
Svelte
15 lines
223 B
Svelte
<script lang="ts">
|
|
import type { Writable } from "svelte/store";
|
|
|
|
export let html: Writable<string>
|
|
</script>
|
|
|
|
<div class="qa">
|
|
{@html $html}
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.qa {
|
|
flex: 1
|
|
}
|
|
</style>
|