Files
Genarrative/src/components/rpg-creation-result/RpgCreationResultView.tsx
kdletters cbc27bad4a
Some checks failed
CI / verify (push) Has been cancelled
init with react+axum+spacetimedb
2026-04-26 18:06:23 +08:00

18 lines
626 B
TypeScript

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;