chore: issue detail refactor (#6803)
This commit is contained in:
parent
983e0fa081
commit
e8718a84fe
5 changed files with 23 additions and 1 deletions
|
|
@ -0,0 +1,10 @@
|
|||
import { FC } from "react";
|
||||
|
||||
export type TWorkItemAdditionalWidgets = {
|
||||
workspaceSlug: string;
|
||||
projectId: string;
|
||||
workItemId: string;
|
||||
disabled: boolean;
|
||||
};
|
||||
|
||||
export const WorkItemAdditionalWidgets: FC<TWorkItemAdditionalWidgets> = (props) => <></>;
|
||||
1
web/ce/components/issues/issue-detail-widgets/index.ts
Normal file
1
web/ce/components/issues/issue-detail-widgets/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./additional-widgets";
|
||||
Loading…
Add table
Add a link
Reference in a new issue