* chore: adjusted increment/decrement for unread count * chore: improved param handling for unread notification count function * chore:file restructuring * fix:notification types * chore:file restructuring * chore:modified notfication types * chore: modified types for notification * chore:removed redundant checks for id
13 lines
436 B
TypeScript
13 lines
436 B
TypeScript
"use client";
|
|
|
|
// components
|
|
import { NotificationsSidebarRoot } from "@/components/workspace-notifications";
|
|
|
|
export default function ProjectInboxIssuesLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="relative w-full h-full overflow-hidden flex items-center">
|
|
<NotificationsSidebarRoot />
|
|
<div className="w-full h-full overflow-hidden overflow-y-auto">{children}</div>
|
|
</div>
|
|
);
|
|
}
|