2019-04-15 15:10:17 +02:00
|
|
|
<script>
|
|
|
|
export let comment;
|
|
|
|
</script>
|
|
|
|
|
2021-04-22 18:05:13 +02:00
|
|
|
<article>
|
|
|
|
<p class="meta">{comment.user} {comment.time_ago}</p>
|
|
|
|
|
|
|
|
{@html comment.content}
|
|
|
|
|
|
|
|
<div class="replies">
|
|
|
|
{#each comment.comments as child}
|
2023-05-14 07:50:43 +02:00
|
|
|
<svelte:self comment={child} />
|
2021-04-22 18:05:13 +02:00
|
|
|
{/each}
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
|
2018-12-22 22:09:27 +01:00
|
|
|
<style>
|
|
|
|
article {
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
margin: 1em 0 0 0;
|
|
|
|
padding: 1em 0 0 0;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.meta {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.replies {
|
|
|
|
padding: 0 0 0 1em;
|
|
|
|
}
|
2023-05-14 07:50:43 +02:00
|
|
|
</style>
|