[feat] fps test results gathering

This commit is contained in:
2025-11-05 13:20:50 +08:00
parent c19adcc3f8
commit ce410f7a26
17 changed files with 363 additions and 116 deletions

View File

@@ -12,12 +12,12 @@ import { Refresh, SettingConfig } from "@icon-park/react"
// import { version } from "@tauri-apps/plugin-os"
import { useEffect, useState } from "react"
import { type AllSystemInfo, allSysInfo } from "tauri-plugin-system-info-api"
import { FpsTest } from "@/components/cstb/FpsTest"
export default function Page() {
return (
<section className="flex flex-col gap-4 overflow-hidden rounded-lg">
<div className="flex flex-col gap-4 overflow-y-auto h-full hide-scrollbar">
<Card>
<div className="flex flex-col h-full gap-4 overflow-hidden hide-scrollbar">
<Card className="overflow-hidden">
<CardHeader>
<CardIcon type="menu">
<SettingConfig />
@@ -37,7 +37,6 @@ export default function Page() {
<HardwareInfo />
</CardBody>
</Card>
<FpsTest />
</div>
</section>
)