UNPKG

@pluve/ace

Version:

一套React版本的 Taro UI 组件库

14 lines (13 loc) 370 B
import { FC, PropsWithChildren } from 'react'; import TabPane from './TabPane'; interface ITabsProps { className?: string; defaultActiveKey?: string; activeKey?: string; animated?: boolean; onChange?: (key: string) => void; } declare const Tabs: FC<PropsWithChildren<ITabsProps>> & { TabPane: typeof TabPane; }; export default Tabs;