rewrite project

This commit is contained in:
Km.Van
2025-08-06 22:03:32 +08:00
parent 07f2a32298
commit 29089a4de4
409 changed files with 9807 additions and 22638 deletions

View File

@@ -0,0 +1,12 @@
import type { CardProps } from '@/Components/Card/components/typings.ts';
import { gettext } from '@/Components/Language/index.ts';
import { ServerBenchmarkConstants } from './constants.ts';
import { ServerBenchmark as component } from './index.tsx';
import { ServerBenchmarkNav as nav } from './nav.tsx';
export const ServerBenchmarkLoader = (): CardProps => ({
id: ServerBenchmarkConstants.id,
title: gettext('Server Benchmark'),
priority: 800,
component,
nav,
});