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

app.vue « components « custom_emoji « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 00b904fbea49bc037f5d92f25b2fade9e0dbb485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
export default {};
</script>

<template>
  <div class="row gl-mt-5">
    <div class="col-12">
      <h4 class="gl-mt-0">
        {{ __('Custom emoji') }}
      </h4>
      <p>{{ __('Custom emoji will be available to use in every project in the group.') }}</p>
      <router-view />
    </div>
  </div>
</template>