mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
16 lines
285 B
Svelte
16 lines
285 B
Svelte
<script lang="ts">
|
|
import type { Writable } from "svelte/store";
|
|
|
|
export let html: Writable<string>;
|
|
export let cardClass: Writable<string>;
|
|
</script>
|
|
|
|
<div id="qa" class={$cardClass}>
|
|
{@html $html}
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
#qa {
|
|
flex: 1;
|
|
}
|
|
</style>
|