mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 07:09:34 +01:00
13 lines
437 B
TypeScript
13 lines
437 B
TypeScript
import { EIssueLayoutTypes } from "@plane/types";
|
|
import { TWorkspaceLayoutProps } from "@/components/views/helper";
|
|
|
|
export type TLayoutSelectionProps = {
|
|
onChange: (layout: EIssueLayoutTypes) => void;
|
|
selectedLayout: EIssueLayoutTypes;
|
|
workspaceSlug: string;
|
|
};
|
|
|
|
export const GlobalViewLayoutSelection = (props: TLayoutSelectionProps) => <></>;
|
|
|
|
export const WorkspaceAdditionalLayouts = (props: TWorkspaceLayoutProps) => <></>;
|