summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_import/components/jira_import_setup.vue
blob: 285c5c815ac7ab659f6a7a4578696c85b77fee03 (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
26
27
28
29
30
<script>
import { GlEmptyState } from '@gitlab/ui';

export default {
  name: 'JiraImportSetup',
  components: {
    GlEmptyState,
  },
  props: {
    illustration: {
      type: String,
      required: true,
    },
    jiraIntegrationPath: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <gl-empty-state
    :svg-path="illustration"
    title=""
    :description="__('You will first need to set up Jira Integration to use this feature.')"
    :primary-button-text="__('Set up Jira Integration')"
    :primary-button-link="jiraIntegrationPath"
  />
</template>