UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

15 lines (14 loc) 415 B
import React from 'react'; import type { FormBaseControlSchema, FormControlProps } from '../types'; /** * Hidden 隐藏域。功能性组件 * */ export interface HiddenControlSchema extends FormBaseControlSchema { type: 'hidden'; } export default class HiddenControl extends React.Component<FormControlProps, any> { render(): null; } export declare class HiddenControlRenderer extends HiddenControl { }