Files
nexus-terminal/packages/frontend/src/views/NotificationsView.vue
T
Baobhan Sith 6ccfca055c update
2025-04-28 21:25:02 +08:00

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>