返回 DeepSeek-Reasonix
App.tsx
根目录 / desktop / frontend / src / App.tsx
1 import { AppRuntime } from "./AppRuntime";
2
3 /**
4 * The application entry is intentionally a composition boundary. Runtime
5 * ownership, domain commands and region view models live below this seam;
6 * this module must remain free of bridge calls and async coordination.
7 */
8 export default function App() {
9 return <AppRuntime />;
10 }
11
11 lines Plain Text