feat: init
This commit is contained in:
1
apps/web/ce/components/issues/worklog/property/index.ts
Normal file
1
apps/web/ce/components/issues/worklog/property/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from "./root";
|
||||
12
apps/web/ce/components/issues/worklog/property/root.tsx
Normal file
12
apps/web/ce/components/issues/worklog/property/root.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
"use client";
|
||||
|
||||
import type { FC } from "react";
|
||||
|
||||
type TIssueWorklogProperty = {
|
||||
workspaceSlug: string;
|
||||
projectId: string;
|
||||
issueId: string;
|
||||
disabled: boolean;
|
||||
};
|
||||
|
||||
export const IssueWorklogProperty: FC<TIssueWorklogProperty> = () => <></>;
|
||||
Reference in New Issue
Block a user