refactor project states to ake way for new features (#6156)

This commit is contained in:
rahulramesha 2024-12-05 12:46:51 +05:30 committed by GitHub
parent 3bccda0c86
commit 66652a5d71
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
38 changed files with 462 additions and 161 deletions

View file

@ -0,0 +1,8 @@
import { TIssueGroupByOptions } from "@plane/types";
type Props = {
groupBy?: TIssueGroupByOptions;
groupId: string | undefined;
};
export const WorkFlowGroupTree = (props: Props) => <></>;