1<script>
2import { GlButton } from '@gitlab/ui';
3import BitbucketStatusTable from '~/import_entities/import_projects/components/bitbucket_status_table.vue';
4
5export default {
6  components: {
7    BitbucketStatusTable,
8    GlButton,
9  },
10  inheritAttrs: false,
11  props: {
12    reconfigurePath: {
13      type: String,
14      required: true,
15    },
16  },
17};
18</script>
19<template>
20  <bitbucket-status-table v-bind="$attrs">
21    <template #actions>
22      <gl-button variant="info" class="gl-ml-3" data-method="post" :href="reconfigurePath">{{
23        __('Reconfigure')
24      }}</gl-button>
25    </template>
26  </bitbucket-status-table>
27</template>
28