13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
"use client";
|
|
|
|
import type { FC } from "react";
|
|
|
|
type TIssueWorklogProperty = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const IssueWorklogProperty: FC<TIssueWorklogProperty> = () => <></>;
|