summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/static_site_editor/components/app.vue
blob: 365fc7ce6e9b50d3167d7c3f7e38743599c0ce6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
export default {
  props: {
    mergeRequestsIllustrationPath: {
      type: String,
      required: true,
    },
  },
};
</script>
<template>
  <router-view :merge-requests-illustration-path="mergeRequestsIllustrationPath" />
</template>