/* Copyright 2026 Marimo. All rights reserved. */
import { lazy } from "react";
import type { AppConfig, UserConfig } from "@/core/config/config-schema";
import { KnownQueryParams } from "@/core/constants";
import { EditApp } from "@/core/edit-app";
import { AppChrome } from "../editor/chrome/wrapper/app-chrome";
const LazyCommandPalette = lazy(
() => import("../editor/controls/command-palette"),
);
interface Props {
userConfig: UserConfig;
appConfig: AppConfig;
}
const hideChrome = (() => {
const url = new URL(window.location.href);
return url.searchParams.get(KnownQueryParams.showChrome) === "false";
})();
const EditPage = (props: Props) => {
if (hideChrome) {
return (
<>
>
);
}
return (
);
};
export default EditPage;