frontend/components/sidebars/right-sidebar.vue

14 lines
427 B
Vue
Raw Normal View History

2024-12-02 22:55:36 +01:00
<template>
<Sidebar side="right" collapsible="none" class="w-96 hidden lg:flex">
2024-12-02 22:55:36 +01:00
<SidebarContent class="p-2 overflow-y-auto">
<NotificationsTimeline />
</SidebarContent>
<SidebarRail />
</Sidebar>
</template>
<script lang="ts" setup>
import NotificationsTimeline from "../timelines/notifications.vue";
import { Sidebar, SidebarContent, SidebarRail } from "../ui/sidebar";
</script>