feat: add comment field to track page

This commit is contained in:
Roman Godmaire 2023-11-25 18:28:19 -05:00
parent 636d706ad5
commit 9fb666bc85

View file

@ -1,5 +1,7 @@
<script lang="ts"> <script lang="ts">
import Comment from '$lib/components/Comment.svelte'; import Comment from '$lib/components/Comment.svelte';
import CommentField from '$lib/components/CommentField.svelte';
export let data; export let data;
let { track } = data; let { track } = data;
</script> </script>
@ -35,4 +37,5 @@
{/each} {/each}
</details> </details>
{/each} {/each}
<CommentField />
</section> </section>