init with react+axum+spacetimedb
Some checks failed
CI / verify (push) Has been cancelled

This commit is contained in:
2026-04-26 18:06:23 +08:00
commit cbc27bad4a
20199 changed files with 883714 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { PlatformEntryFlowShell } from '../platform-entry/PlatformEntryFlowShell';
import type { RpgEntryFlowShellProps } from './rpgEntryTypes';
import type { SelectionStage } from './rpgEntryTypes';
export type { RpgEntryFlowShellProps, SelectionStage };
/**
* 兼容旧 RPG 入口导入路径。
* 多玩法入口真实实现已迁移到 `platform-entry`,避免非 RPG 玩法写入 RPG 脚本。
*/
export function RpgEntryFlowShell(props: RpgEntryFlowShellProps) {
return <PlatformEntryFlowShell {...props} />;
}
/**
* 兼容创作链已经接入的旧组件命名,避免本轮迁移扩大影响面。
*/
export const RpgCreationShell = RpgEntryFlowShell;
export default RpgEntryFlowShell;