18 lines
626 B
TypeScript
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;
|