7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
export type TProjectTeamspaceList = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
|
|
export const ProjectTeamspaceList: React.FC<TProjectTeamspaceList> = () => null;
|