14 lines
275 B
Vue
14 lines
275 B
Vue
<template>
|
|
<div class="p-4 bg-background text-foreground">
|
|
<div class="max-w-6xl mx-auto">
|
|
<NotificationSettings />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import NotificationSettings from '../components/NotificationSettings.vue';
|
|
</script>
|
|
|
|
|