mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 07:09:34 +01:00
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
|
|
import { TIssueGroupByOptions } from "@plane/types";
|
||
|
|
|
||
|
|
type Props = {
|
||
|
|
groupBy?: TIssueGroupByOptions;
|
||
|
|
groupId: string | undefined;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const WorkFlowGroupTree = (props: Props) => <></>;
|