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

stubs.js « shared « registry « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6b88d70e499dea26af57e3c50f971b83f4b346f (plain)
1
2
3
4
5
6
7
8
9
10
11
export const GlLoadingIcon = { name: 'gl-loading-icon-stub', template: '<svg></svg>' };
export const GlCard = {
  name: 'gl-card-stub',
  template: `
<div>
  <slot name="header"></slot>
  <slot></slot>
  <slot name="footer"></slot>
</div>
`,
};