quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
13 lines (12 loc) • 353 B
TypeScript
import { RowProps } from 'antd';
import { FC } from 'react';
import { GRID_ROW, TComponentProps } from '../../Types';
interface IRow extends Omit<RowProps, 'children'> {
children: TComponentProps[];
}
export interface IGridRow {
ctype: typeof GRID_ROW;
props: IRow;
}
declare const GridRow: FC<IGridRow>;
export default GridRow;