13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
"use client";
|
|
|
|
import type { 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) => <></>;
|