mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-21 16:59:02 +08:00
10 lines
358 B
TypeScript
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,
|
|
};
|