UNPKG

jamis

Version:

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

14 lines (13 loc) 561 B
import React from 'react'; import type { Schema } from 'jamis-core'; import type { HBoxColumn, HBoxProps } from './types'; export default class HBox extends React.Component<HBoxProps, object> { static propsList: Array<string>; static defaultProps: Partial<HBoxProps>; renderChild(region: string, node: Schema, props?: any): JSX.Element; renderColumn(column: HBoxColumn, key: number, length: number): JSX.Element | null; renderColumns(): (JSX.Element | null)[]; render(): JSX.Element; } export declare class HBoxRenderer extends HBox { }