import { FC } from "react"; import { observer } from "mobx-react"; // hooks import { useInboxIssues } from "hooks/store"; // components import { InboxIssueListItem } from "../"; type TInboxIssueList = { workspaceSlug: string; projectId: string; inboxId: string }; export const InboxIssueList: FC = observer((props) => { const { workspaceSlug, projectId, inboxId } = props; // hooks const { issues: { getInboxIssuesByInboxId }, } = useInboxIssues(); const inboxIssueIds = getInboxIssuesByInboxId(inboxId); if (!inboxIssueIds) return <>; return (
{inboxIssueIds.map((issueId) => ( ))}
); });