Files
archived-x-prober/src/Components/ServerBenchmark/components/loader.ts
2025-08-10 19:57:03 +08:00

10 lines
358 B
TypeScript

import type { ModuleProps } from '@/Components/Module/components/typings.ts';
import { ServerBenchmarkConstants } from './constants.ts';
import { ServerBenchmark as content } from './index.tsx';
import { ServerBenchmarkNav as nav } from './nav.tsx';
export const ServerBenchmarkLoader: ModuleProps = {
id: ServerBenchmarkConstants.id,
content,
nav,
};