c56da8dc26
恢复 /creation 新版创作工具主页及创作、项目公共侧栏。 将 creation-home 重新纳入 Vite、TypeScript、ESLint 与 Vitest 活动编译链。 恢复 /creation 的 Nginx 与 Pingora SPA 白名单并保留旧子路径下线边界。 补充路由、标题、CSS 过滤和网关 smoke 回归验证。
18 lines
538 B
TypeScript
18 lines
538 B
TypeScript
import { PlatformEntryFlowShellImpl } from './PlatformEntryActiveFlowShell';
|
|
import type {
|
|
PlatformEntryFlowShellProps,
|
|
SelectionStage,
|
|
} from './platformEntryActiveTypes';
|
|
|
|
export type { PlatformEntryFlowShellProps, SelectionStage };
|
|
|
|
/**
|
|
* 平台入口通用壳层。
|
|
* 平台运行入口承载新创作主页、项目、编辑器与账户公共能力。
|
|
*/
|
|
export function PlatformEntryFlowShell(props: PlatformEntryFlowShellProps) {
|
|
return <PlatformEntryFlowShellImpl {...props} />;
|
|
}
|
|
|
|
export default PlatformEntryFlowShell;
|