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