frontend: setup initial updates page

This commit is contained in:
dumbmoron
2024-06-29 18:23:56 +00:00
parent 3aa17733d1
commit 766482c21a
5 changed files with 141 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
<!-- Workaround for https://github.com/pngwn/MDsveX/issues/116 -->
<script lang="ts">
import ChangelogEntry from "./ChangelogEntry.svelte";
export let version = '';
export let title = '';
export let date = '';
export let banner = undefined;
</script>
<ChangelogEntry {version} {title} {date} {banner}>
<slot></slot>
</ChangelogEntry>