mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
import type { PublishStore } from "@/store/publish/publish.store";
|
|
|
|
type Props = {
|
|
publishSettings: PublishStore;
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const ViewNavbarRoot = (props: Props) => <></>;
|