mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
- Introduced a new InboxSidebar component to manage and display inbox items. - Integrated real-time syncing of inbox items using Electric SQL for instant updates. - Added functionality to mark items as read, archive/unarchive, and filter inbox content. - Updated existing components to accommodate the new inbox feature, including layout adjustments and state management. - Enhanced user experience with improved navigation and interaction for inbox items.
12 lines
656 B
TypeScript
12 lines
656 B
TypeScript
export { AllPrivateChatsSidebar } from "./AllPrivateChatsSidebar";
|
|
export { AllSharedChatsSidebar } from "./AllSharedChatsSidebar";
|
|
export { ChatListItem } from "./ChatListItem";
|
|
export { InboxSidebar } from "./InboxSidebar";
|
|
export { MobileSidebar, MobileSidebarTrigger } from "./MobileSidebar";
|
|
export { NavSection } from "./NavSection";
|
|
export { PageUsageDisplay } from "./PageUsageDisplay";
|
|
export { Sidebar } from "./Sidebar";
|
|
export { SidebarCollapseButton } from "./SidebarCollapseButton";
|
|
export { SidebarHeader } from "./SidebarHeader";
|
|
export { SidebarSection } from "./SidebarSection";
|
|
export { SidebarUserProfile } from "./SidebarUserProfile";
|