feat: init
This commit is contained in:
10
apps/web/ce/hooks/use-issue-properties.tsx
Normal file
10
apps/web/ce/hooks/use-issue-properties.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import type { TIssueServiceType } from "@plane/types";
|
||||
|
||||
export const useWorkItemProperties = (
|
||||
projectId: string | null | undefined,
|
||||
workspaceSlug: string | null | undefined,
|
||||
workItemId: string | null | undefined,
|
||||
issueServiceType: TIssueServiceType
|
||||
) => {
|
||||
if (!projectId || !workspaceSlug || !workItemId) return;
|
||||
};
|
||||
Reference in New Issue
Block a user