mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import { IWorkspace } from "@plane/types";
|
|
|
|
type TProps = {
|
|
workspace: IWorkspace;
|
|
};
|
|
|
|
export const SubscriptionPill = (props: TProps) => <></>;
|