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