ontime-components
Version:
List of react components
18 lines (17 loc) • 483 B
TypeScript
import { PureComponent } from 'react';
import { IProps } from '../../libs/interfaces';
interface IRowProps extends IProps {
sizes?: number[];
children?: any[];
}
interface IRowDefProps {
sizes: number[];
children: any[];
}
declare class Row extends PureComponent<IRowProps & IRowDefProps> {
static defaultProps: IRowDefProps;
static maxColumns: number;
constructor(props: IRowProps & IRowDefProps);
render(): JSX.Element;
}
export { Row, IRowProps };