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