// Copyright 2024, Command Line Inc. // SPDX-License-Identifier: Apache-2.0 import { Workspace } from "@/app/workspace/workspace"; import { atoms, globalStore } from "@/store/global"; import * as jotai from "jotai"; import { Provider } from "jotai"; import "../../public/style.less"; import { CenteredDiv } from "./element/quickelems"; const App = () => { return ( ); }; const AppInner = () => { const client = jotai.useAtomValue(atoms.client); const windowData = jotai.useAtomValue(atoms.waveWindow); if (client == null || windowData == null) { return (
invalid configuration, client or window was not loaded
); } return (
); }; export { App };