more yak shaving

This commit is contained in:
2021-10-19 06:44:15 -07:00
parent af6b065de8
commit 481eac817e
5 changed files with 36 additions and 15 deletions

9
src/lib/Post.svelte Normal file
View File

@ -0,0 +1,9 @@
<script>
export let meta, body;
</script>
<div id="post">
<h1>{meta.title}</h1>
<svelte:component this={body} />
</div>