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

modal_stub.js « stubs « monitoring « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cd0362096e9a9bbd50264f303f924c5048eac30 (plain)
1
2
3
4
5
6
7
8
9
10
11
const ModalStub = {
  name: 'glmodal-stub',
  template: `
    <div>
      <slot></slot>
      <slot name="modal-ok"></slot>
    </div>
  `,
};

export default ModalStub;