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,17 @@
import type { ComponentProps } from 'react';
import { RpgCreationResultView as RpgCreationResultViewImpl } from './RpgCreationResultViewImpl';
/**
* 工作包 C 完成后,结果页入口统一桥接 RPG 创作目录下的真实实现。
* 旧 `CustomWorldResultView.tsx` 兼容入口已经删除,后续结果页细化继续在该目录内部推进。
*/
export type RpgCreationResultViewProps = ComponentProps<
typeof RpgCreationResultViewImpl
>;
export function RpgCreationResultView(props: RpgCreationResultViewProps) {
return <RpgCreationResultViewImpl {...props} />;
}
export default RpgCreationResultView;