Files
Genarrative/src/App.tsx
2026-04-10 15:37:02 +08:00

9 lines
283 B
TypeScript

import { GameShellRuntime } from './components/game-shell/GameShellRuntime.tsx';
import { useGameShellRuntime } from './hooks/useGameShellRuntime';
export default function App() {
const gameShellProps = useGameShellRuntime();
return <GameShellRuntime {...gameShellProps} />;
}