2021-04-24 02:14:54 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
2021-10-26 00:43:02 +02:00
|
|
|
<script lang="ts">
|
2021-04-24 02:14:54 +02:00
|
|
|
import { onMount } from "svelte";
|
|
|
|
|
|
|
|
export let html: string;
|
|
|
|
export let mounted: () => void;
|
|
|
|
|
|
|
|
onMount(mounted);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{@html html}
|