UNPKG

@nutui/nutui-react-taro

Version:

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

14 lines (13 loc) 399 B
import { default as React, FunctionComponent } from 'react'; interface TabPanelInnerProps { autoHeightClassName: string; } export interface TabPaneProps { title: string | number; value: string | number; disabled: boolean; className: string; children?: React.ReactNode; } export declare const TabPane: FunctionComponent<Partial<TabPaneProps & TabPanelInnerProps>>; export {};