bb-plane-fork/apps/web/ce/components/de-dupe/issue-block/button-label.tsx
sriram veeraghanta 944b873184
chore: move all services inside the apps folder (#7321)
* chore: move all services inside the apps folder

* chore: rename apiserver to server
2025-07-03 00:44:13 +05:30

13 lines
273 B
TypeScript

"use client";
import { FC } from "react";
type TDeDupeIssueButtonLabelProps = {
isOpen: boolean;
buttonLabel: string;
};
export const DeDupeIssueButtonLabel: FC<TDeDupeIssueButtonLabelProps> = (props) => {
const { isOpen, buttonLabel } = props;
return <></>;
};