mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 23:29:37 +01:00
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import { IProjectView } from "@plane/types";
|
||
|
|
|
||
|
|
type Props = {
|
||
|
|
isOpen: boolean;
|
||
|
|
view: IProjectView;
|
||
|
|
onClose: () => void;
|
||
|
|
};
|
||
|
|
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||
|
|
export const PublishViewModal = (props: Props) => <></>;
|