UNPKG

@jay.kou/rak-ssr

Version:

A react based UI components for admin system

13 lines (12 loc) 358 B
/** * 自定义展示组件,用于显示约定式数据的值和标签 */ declare const DisplayComponent: (props: { value?: { value: string; label: string; } | undefined; onChange?: ((val: any) => void) | undefined; num?: number | undefined; }) => import("react/jsx-runtime").JSX.Element; export default DisplayComponent;