import { FC } from "react"; import { Inbox } from "lucide-react"; // components import { InboxIssueList, InboxIssueFilterSelection, InboxIssueAppliedFilter } from "../"; type TInboxSidebarRoot = { workspaceSlug: string; projectId: string; inboxId: string; }; export const InboxSidebarRoot: FC = (props) => { const { workspaceSlug, projectId, inboxId } = props; return (
Inbox
); };