UNPKG

@pluve/ace

Version:

一套React版本的 Taro UI 组件库

9 lines (8 loc) 226 B
import { FC, PropsWithChildren } from 'react'; interface ITabPaneProps { id?: string; activeKey?: string; tab: string; } declare const TabPane: FC<PropsWithChildren<ITabPaneProps>>; export default TabPane;