mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
* Changes required to enable Publish Views * default views to not found page * refactor exports * remove uncessary view service * fix review comments
11 lines
332 B
TypeScript
11 lines
332 B
TypeScript
import { PageNotFound } from "@/components/ui/not-found";
|
|
import { PublishStore } from "@/store/publish/publish.store";
|
|
|
|
type Props = {
|
|
peekId: string | undefined;
|
|
publishSettings: PublishStore;
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const ViewLayoutsRoot = (props: Props) => <PageNotFound />;
|