linstrom/frontend-reactive/app/components/timeline.hbs

6 lines
148 B
Handlebars
Raw Normal View History

2024-09-23 15:09:19 +00:00
<div class="timeline">
{{#each @notes as |note|}}
<Note @isInTimeline="true" @note={{note}}/>
<hr class="timeline-separator">
2024-09-23 15:09:19 +00:00
{{/each}}
</div>