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

groups_explore_empty_state.vue « empty_states « components « groups « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f524b76980240815afdfabe300bfa9371a32670f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
import { GlEmptyState } from '@gitlab/ui';

import { __ } from '~/locale';

export default {
  components: { GlEmptyState },
  inject: ['groupsEmptyStateIllustration'],
  i18n: {
    title: __('No public groups'),
  },
};
</script>

<template>
  <gl-empty-state :title="$options.i18n.title" :svg-path="groupsEmptyStateIllustration" />
</template>