UNPKG

@schema-render/core-react

Version:

Through a set of simple JSON Schema, efficiently build a set of forms.

10 lines (9 loc) 307 B
import type { FC } from 'react'; import type { ICommonProps } from '../typings/common'; import type { IRenderer } from '../typings/core'; interface IProps extends ICommonProps { renderer: IRenderer; gridColumn?: string; } declare const RendererExecutor: FC<IProps>; export default RendererExecutor;