mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-01 12:44:37 +00:00
19 lines
343 B
Vue
19 lines
343 B
Vue
<template>
|
|
<os-card>
|
|
<h2 class="title">{{ $t('admin.notifications.name') }}</h2>
|
|
<hc-empty icon="tasks" message="Coming Soon…" />
|
|
</os-card>
|
|
</template>
|
|
|
|
<script>
|
|
import { OsCard } from '@ocelot-social/ui'
|
|
import HcEmpty from '~/components/Empty/Empty'
|
|
|
|
export default {
|
|
components: {
|
|
OsCard,
|
|
HcEmpty,
|
|
},
|
|
}
|
|
</script>
|