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: 53dbae39608a9a9d151dcfbe31df2450e9ebf63b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script>
import { GlDeprecatedSkeletonLoading as GlSkeletonLoading } from '@gitlab/ui';
import TimelineEntryItem from '~/vue_shared/components/notes/timeline_entry_item.vue';

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

<template>
  <timeline-entry-item class="note note-wrapper" data-qa-selector="skeleton_note">
    <div class="timeline-icon"></div>
    <div class="timeline-content">
      <div class="note-header"></div>
      <div class="note-body"><gl-skeleton-loading /></div>
    </div>
  </timeline-entry-item>
</template>