2021-04-15 15:59:52 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
2021-04-09 20:55:49 +02:00
|
|
|
<script lang="typescript">
|
|
|
|
import { onMount, createEventDispatcher } from "svelte";
|
|
|
|
|
|
|
|
export let html: string;
|
|
|
|
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
onMount(() => dispatch("mount", { button: null }));
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{@html html}
|