summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/profile/components/followers_tab.vue
blob: 47651c33eb82bd13ca3841ff92629dd2c8f74a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
import { GlTab } from '@gitlab/ui';
import { s__ } from '~/locale';

export default {
  i18n: {
    title: s__('UserProfile|Followers'),
  },
  components: { GlTab },
};
</script>

<template>
  <gl-tab :title="$options.i18n.title">
    <!-- placeholder -->
  </gl-tab>
</template>