mirror of
https://github.com/dream-pep/koring-launcher.git
synced 2026-09-12 05:45:18 +08:00
- 新增完整的upvp更新引导页面套件,涵盖版本展示、版本检查、测试协议确认与完成页流程 - 新增appVersion配置字段用于记录当前应用版本,调整配置文件存储路径与旧配置迁移逻辑 - 更新路由配置与全局状态管理以支持更新引导流程 - 更新自动更新计划文档与示例配置文件
15 lines
331 B
TypeScript
15 lines
331 B
TypeScript
import { type ReactNode } from "react";
|
|
|
|
interface UpvpLayoutProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
/** 与 OOBE 相同的全屏居中布局框架 */
|
|
export function UpvpLayout({ children }: UpvpLayoutProps) {
|
|
return (
|
|
<div className="h-full flex flex-col items-center justify-center relative">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|