mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
20 lines
520 B
TypeScript
20 lines
520 B
TypeScript
|
import { observer } from "mobx-react";
|
||
|
// components
|
||
|
import { BulkOperationsUpgradeBanner } from "@/components/issues";
|
||
|
// hooks
|
||
|
import { useMultipleSelectStore } from "@/hooks/store";
|
||
|
|
||
|
type Props = {
|
||
|
className?: string;
|
||
|
};
|
||
|
|
||
|
export const IssueBulkOperationsRoot: React.FC<Props> = observer((props) => {
|
||
|
const { className } = props;
|
||
|
// store hooks
|
||
|
const { isSelectionActive } = useMultipleSelectStore();
|
||
|
|
||
|
if (!isSelectionActive) return null;
|
||
|
|
||
|
return <BulkOperationsUpgradeBanner className={className} />;
|
||
|
});
|