UNPKG

@jay.kou/rak-ssr

Version:

A react based UI components for admin system

10 lines (9 loc) 291 B
/** * 模拟表单中的一个简单控件 */ declare const SimpleComponent: (props: { value?: string | number | undefined; onChange?: ((val: any) => void) | undefined; testid?: string | undefined; }) => import("react/jsx-runtime").JSX.Element; export default SimpleComponent;