summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/notes/timeline_entry_item.vue
blob: 06974a12aed534f69af62cbb6e9a42e43e48fb00 (plain)
1
2
3
4
5
6
7
8
9
10
11
<script>
export default {
  name: 'TimelineEntryItem',
};
</script>

<template>
  <li class="timeline-entry">
    <div class="timeline-entry-inner"><slot></slot></div>
  </li>
</template>