Skip to content

Instantly share code, notes, and snippets.

@serenaf
Created November 7, 2017 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save serenaf/1f9f215f79fe68982273b3a52b930ab0 to your computer and use it in GitHub Desktop.
Save serenaf/1f9f215f79fe68982273b3a52b930ab0 to your computer and use it in GitHub Desktop.
Comment Component
<div class="comment">
<em>{{comment.user}} {{comment.timeAgo}}</em>
<p>{{{comment.content}}}</p>
{{#each comment.comments as |childComment|}}
{{comment-component comment=childComment}}
{{/each}}
</div>
<h2>{{model.title}}</h2>
{{#each model.comments as |comment|}}
{{comment-component comment=comment}}
{{/each}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment