

import type { IProjectView } from "@buzzwaretech/types";

type Props = {
  isOpen: boolean;
  view: IProjectView;
  onClose: () => void;
};

// eslint-disable-next-line @typescript-eslint/no-unused-vars
export function PublishViewModal(props: Props) {
  return <></>;
}
