* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
15 lines
374 B
TypeScript
15 lines
374 B
TypeScript
import type { FC } from "react";
|
|
import React from "react";
|
|
// local components
|
|
|
|
type TDeDupeButtonRoot = {
|
|
workspaceSlug: string;
|
|
isDuplicateModalOpen: boolean;
|
|
handleOnClick: () => void;
|
|
label: string;
|
|
};
|
|
|
|
export function DeDupeButtonRoot(props: TDeDupeButtonRoot) {
|
|
const { workspaceSlug, isDuplicateModalOpen, label, handleOnClick } = props;
|
|
return <></>;
|
|
}
|