summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/saved_replies/components/list_item.vue
blob: dfa9a405dee310805086696da1ad009ec80cff07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<script>
export default {
  props: {
    reply: {
      type: Object,
      required: true,
    },
  },
};
</script>

<template>
  <li class="gl-mb-5">
    <div class="gl-display-flex gl-align-items-center">
      <strong>{{ reply.name }}</strong>
    </div>
    <div class="gl-mt-3 gl-font-monospace">{{ reply.content }}</div>
  </li>
</template>