bb-plane-fork/web/ce/components/de-dupe/issue-block/button-label.tsx
Anmol Singh Bhatia 57eb08c8a2
chore: code refactoring (#5928)
* chore: de dupe code splitting

* chore: code refactor
2024-10-29 19:39:55 +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 <></>;
};