antd-mobile-taro-ui
Version:
以antd-mobile为设计标准,基于taro框架的微信小程序组件库
19 lines (18 loc) • 626 B
TypeScript
import React, { FC, ReactNode } from 'react';
import { NativeProps } from 'antd-mobile/es/utils/native-props';
export declare type JumboTabProps = {
title: ReactNode;
description: ReactNode;
disabled?: boolean;
forceRender?: boolean;
destroyOnClose?: boolean;
children?: React.ReactNode;
} & NativeProps;
export declare const JumboTab: FC<JumboTabProps>;
export declare type JumboTabsProps = {
activeKey?: string | null;
defaultActiveKey?: string | null;
onChange?: (key: string) => void;
children?: React.ReactNode;
} & NativeProps;
export declare const JumboTabs: FC<JumboTabsProps>;