UNPKG

@nutui/nutui-react

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

10 lines (9 loc) 341 B
import { FunctionComponent, ReactNode } from 'react'; import { BasicComponent } from "../../utils/typings"; export interface CellGroupProps extends BasicComponent { title: ReactNode; description: ReactNode; children?: ReactNode; divider: boolean; } export declare const CellGroup: FunctionComponent<Partial<CellGroupProps>>;