mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
11 lines
460 B
TypeScript
11 lines
460 B
TypeScript
import { useContext } from "react";
|
|
// mobx store
|
|
import { StoreContext } from "@/lib/store-context";
|
|
import { IInboxIssueStore } from "@/store/inbox/inbox-issue.store";
|
|
|
|
export const useInboxIssues = (inboxIssueId: string): IInboxIssueStore => {
|
|
const context = useContext(StoreContext);
|
|
if (context === undefined) throw new Error("useInboxIssues must be used within StoreProvider");
|
|
return context.projectInbox.getIssueInboxByIssueId(inboxIssueId);
|
|
};
|