mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 23:29:37 +01:00
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
"use client";
|
|
|
|
import { observer } from "mobx-react";
|
|
|
|
export type TBillingActionsButtonProps = {
|
|
canPerformWorkspaceAdminActions: boolean;
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const BillingActionsButton = observer((props: TBillingActionsButtonProps) => <></>);
|