Welcome to mirror list, hosted at ThFree Co, Russian Federation.

skeleton_note.vue « notes « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f56414c3c6348ba3b8286e5447ee6b3123b6df39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<script>
import { GlSkeletonLoading } from '@gitlab-org/gitlab-ui';

export default {
  name: 'SkeletonNote',
  components: {
    GlSkeletonLoading,
  },
};
</script>

<template>
  <li class="timeline-entry note">
    <div class="timeline-entry-inner">
      <div class="timeline-icon">
      </div>
      <div class="timeline-content">
        <div class="note-header"></div>
        <div class="note-body">
          <gl-skeleton-loading />
        </div>
      </div>
    </div>
  </li>
</template>