bb-plane-fork/apps/web/ce/components/views/helper.tsx
Vamsi Krishna 2f45bfb7f6
[WEB-5256]chore: quick actions refactor (#8019)
* chore: quick actions refactor

* chore: lint fix

* chore: unified factory for actions

* chore: lint fix

* * chore: removed redundant files
* chore: updated imports

* chore: updated interfaces to types

* chore: updated undefined handling
2025-12-09 21:12:15 +05:30

21 lines
622 B
TypeScript

import type { EIssueLayoutTypes, IProjectView } from "@plane/types";
import type { TWorkspaceLayoutProps } from "@/components/views/helper";
export type TLayoutSelectionProps = {
onChange: (layout: EIssueLayoutTypes) => void;
selectedLayout: EIssueLayoutTypes;
workspaceSlug: string;
};
export function GlobalViewLayoutSelection(props: TLayoutSelectionProps) {
return <></>;
}
export function WorkspaceAdditionalLayouts(props: TWorkspaceLayoutProps) {
return <></>;
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export function AdditionalHeaderItems(view: IProjectView) {
return <></>;
}