mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
9 lines
No EOL
208 B
Svelte
9 lines
No EOL
208 B
Svelte
<script lang="ts">
|
|
import { bridgeCommand } from "@tslib/bridgecommand";
|
|
|
|
export let info: AnswerButtonInfo
|
|
</script>
|
|
|
|
<button on:click={()=>bridgeCommand(`ease${info.i}`)}>
|
|
{info.label}
|
|
</button> |