| 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 |