* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import type { IProjectView } from "@plane/types";
|
|
|
|
type Props = {
|
|
isOpen: boolean;
|
|
view: IProjectView;
|
|
onClose: () => void;
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export function PublishViewModal(props: Props) {
|
|
return <></>;
|
|
}
|