* Changes required to enable Publish Views * default views to not found page * refactor exports * remove uncessary view service * fix review comments
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import { PublishStore } from "@/store/publish/publish.store";
|
|
|
|
type Props = {
|
|
publishSettings: PublishStore;
|
|
};
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const ViewNavbarRoot = (props: Props) => <></>;
|