join_admin/src/views/incentives/create.vue
Lukas Bachschwell 125f6b80d8
All checks were successful
continuous-integration/drone/push Build is passing
Incentive Page
2020-01-03 13:33:47 +01:00

14 lines
214 B
Vue

<template>
<article-detail :is-edit="false" />
</template>
<script>
import ArticleDetail from './components/ArticleDetail'
export default {
name: 'CreateArticle',
components: { ArticleDetail }
}
</script>