summaryrefslogtreecommitdiffstats
path: root/src/App.vue
blob: 918f8dc1eeb2d602ec42e2d913277b4cf9ea8c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
	<Content app-name="news">
		<Sidebar />
	</Content>
</template>

<script>
import Content from '@nextcloud/vue/dist/Components/Content'
import Sidebar from './components/Sidebar.vue'

export default {
	components: {
		Content,
		Sidebar,
	},
}
</script>