bb-plane-fork/apps/web/ce/components/views/publish/modal.tsx
sriram veeraghanta 944b873184
chore: move all services inside the apps folder (#7321)
* chore: move all services inside the apps folder

* chore: rename apiserver to server
2025-07-03 00:44:13 +05:30

12 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) => <></>;