mirror of
https://github.com/makeplane/plane.git
synced 2026-07-11 21:10:13 +02:00
* chore: issue properties refactor * chore: added export to props * chore: updated component name
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
import React, { FC } from "react";
|
|
import { IIssueDisplayProperties, TIssue } from "@plane/types";
|
|
|
|
export type TWorkItemLayoutAdditionalProperties = {
|
|
displayProperties: IIssueDisplayProperties;
|
|
issue: TIssue;
|
|
};
|
|
|
|
export const WorkItemLayoutAdditionalProperties: FC<TWorkItemLayoutAdditionalProperties> = (props) => <></>;
|