chore: code refactoring (#5928)
* chore: de dupe code splitting * chore: code refactor
This commit is contained in:
parent
4bc751b7ab
commit
57eb08c8a2
21 changed files with 664 additions and 250 deletions
1
web/ce/components/de-dupe/duplicate-modal/index.ts
Normal file
1
web/ce/components/de-dupe/duplicate-modal/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./root";
|
||||
16
web/ce/components/de-dupe/duplicate-modal/root.tsx
Normal file
16
web/ce/components/de-dupe/duplicate-modal/root.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
"use-client";
|
||||
|
||||
import { FC } from "react";
|
||||
// types
|
||||
import { TDeDupeIssue } from "@plane/types";
|
||||
|
||||
type TDuplicateModalRootProps = {
|
||||
workspaceSlug: string;
|
||||
issues: TDeDupeIssue[];
|
||||
handleDuplicateIssueModal: (value: boolean) => void;
|
||||
};
|
||||
|
||||
export const DuplicateModalRoot: FC<TDuplicateModalRootProps> = (props) => {
|
||||
const { workspaceSlug, issues, handleDuplicateIssueModal } = props;
|
||||
return <></>;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue