Files
Kotyata/apps/client/pages/settings/notifications.vue
2026-03-17 13:24:22 +03:00

23 lines
405 B
Vue

<template>
<PageBlock
class="settings-notifications"
title="Notification settings"
sub-title="Set how you want to receive notifications"
>
<SettingsServiceNotificationTable />
<SettingsFinanceNotificationTable />
</PageBlock>
</template>
<script setup>
</script>
<style lang="scss">
.settings-notifications{
--page-block-gap: 24px;
--page-block-padding: 24px;
}
</style>