mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 20:07:56 +01:00
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
|
|
export type TProjectTeamspaceList = {
|
||
|
|
workspaceSlug: string;
|
||
|
|
projectId: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const ProjectTeamspaceList: React.FC<TProjectTeamspaceList> = () => null;
|