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: 405a296397fe15a8cbc8073956876415801854d9 (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 group.') }}</p>
      <router-view />
    </div>
  </div>
</template>