9 lines
283 B
TypeScript
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} />;
|
|
}
|