mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-15 09:24:38 +00:00
16 lines
243 B
Vue
16 lines
243 B
Vue
<template>
|
|
<div class="overview">
|
|
<community-news />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import CommunityNews from '@/components/Overview/CommunityNews'
|
|
|
|
export default {
|
|
name: 'Overview',
|
|
components: {
|
|
CommunityNews,
|
|
},
|
|
}
|
|
</script>
|