feat(web): show ids

This commit is contained in:
zhaoying
2026-04-29 11:28:13 +08:00
parent 8f6aad333f
commit 4d7f9c4dae
7 changed files with 72 additions and 18 deletions

View File

@@ -7,11 +7,12 @@
* @LastEditTime: 2025-11-19 19:59:36
*/
import { Divider } from 'antd';
import type { ReactElement } from 'react';
export interface InfoItem {
key: string;
label: string;
value: string | number | undefined;
value: string | number | undefined | ReactElement;
icon?: string;
}