import { FC, Fragment } from "react"; import { observer } from "mobx-react"; // components import { InboxIssueListItem } from "@/components/inbox"; export type InboxIssueListProps = { workspaceSlug: string; projectId: string; projectIdentifier?: string; inboxIssueIds: string[]; setIsMobileSidebar: (value: boolean) => void; }; export const InboxIssueList: FC = observer((props) => { const { workspaceSlug, projectId, projectIdentifier, inboxIssueIds, setIsMobileSidebar } = props; return ( <> {inboxIssueIds.map((inboxIssueId) => ( ))} ); });