mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 05:21:14 +02: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) => <></>;
|