summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/components/file_nav/pipeline_editor_file_nav.vue
blob: 551a0430fbfe3231ce492e6f61ae431393035349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script>
import BranchSwitcher from './branch_switcher.vue';

export default {
  components: {
    BranchSwitcher,
  },
};
</script>
<template>
  <div class="gl-mb-4">
    <branch-switcher v-on="$listeners" />
  </div>
</template>