completed modules

This commit is contained in:
Km.Van
2025-08-10 19:57:03 +08:00
parent 29089a4de4
commit c12f7bea7d
73 changed files with 608 additions and 607 deletions

View File

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