1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<script lang="ts" module> export * from './Post'; </script> <script lang="ts"> import type { Post } from './Post'; let { post, }: { post: Post; } = $props(); let PostComp = $derived(post.default); </script> <div class="flex justify-center"> <div class="max-w-2xl"> <article id="postmd"> <PostComp /> </article> </div> </div>