mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 14:49:37 +01:00
10 lines
276 B
TypeScript
10 lines
276 B
TypeScript
import { PageNotFound } from "@/components/ui/not-found";
|
|
import type { PublishStore } from "@/store/publish/publish.store";
|
|
|
|
type Props = {
|
|
peekId: string | undefined;
|
|
publishSettings: PublishStore;
|
|
};
|
|
|
|
export const ViewLayoutsRoot = (_props: Props) => <PageNotFound />;
|