Files
Genarrative/src/App.tsx
2026-04-21 18:27:46 +08:00

9 lines
261 B
TypeScript

import { RpgRuntimeShell } from './components/rpg-runtime-shell';
import { useRpgRuntimeSession } from './hooks/rpg-session';
export default function App() {
const gameShellProps = useRpgRuntimeSession();
return <RpgRuntimeShell {...gameShellProps} />;
}