mirror of
https://github.com/kmvan/x-prober.git
synced 2026-04-21 16:59:02 +08:00
11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import type { ModuleProps } from '@/Components/Module/components/typings.ts';
|
|
import { PingConstants } from './constants.ts';
|
|
import { Ping as content } from './index.tsx';
|
|
import { PingNav as nav } from './nav.tsx';
|
|
|
|
export const PingLoader: ModuleProps = {
|
|
id: PingConstants.id,
|
|
content,
|
|
nav,
|
|
};
|