summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/components/ide_file_row.vue
blob: f41337762fdb45346a7435e7e3accd4de0f44b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
/**
 * This component is an iterative step towards refactoring and simplifying `vue_shared/components/file_row.vue`
 * https://gitlab.com/gitlab-org/gitlab/-/merge_requests/23720
 */
import FileRow from '~/vue_shared/components/file_row.vue';

export default {
  components: {
    FileRow,
  },
};
</script>

<template>
  <file-row v-bind="$attrs" v-on="$listeners" />
</template>