mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
14 lines
427 B
Vue
14 lines
427 B
Vue
<template>
|
|
<Sidebar side="right" collapsible="none" class="w-96 hidden lg:flex">
|
|
<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>
|