mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-01 12:44:37 +00:00
19 lines
255 B
Vue
19 lines
255 B
Vue
<template>
|
|
<div>
|
|
<h2>Neue Gruppe</h2>
|
|
|
|
|
|
<new-group-form style="padding-top: 30px"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import NewGroupForm from '~/components/GroupForm/GroupForm'
|
|
|
|
export default {
|
|
components: {
|
|
NewGroupForm,
|
|
},
|
|
}
|
|
</script>
|