mirror of
https://github.com/dream-pep/koring-launcher.git
synced 2026-09-12 05:45:18 +08:00
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>
|
||
|
|
);
|
||
|
|
}
|