chore: issue detail refactor (#6803)

This commit is contained in:
Vamsi Krishna 2025-03-24 18:33:22 +05:30 committed by GitHub
parent 983e0fa081
commit e8718a84fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 23 additions and 1 deletions

View file

@ -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) => <></>;

View file

@ -0,0 +1 @@
export * from "./additional-widgets";