zp-bee
Version:
zp-bee,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。
20 lines (19 loc) • 481 B
TypeScript
import React from 'react';
declare type PanelProps = {
title: string;
id: string;
isActive?: boolean;
isCache?: boolean;
children: React.ReactNode;
};
export declare const BeeTabPanel: React.FC<PanelProps>;
declare type TabsProps = {
activeKey: string;
children: React.ReactNode;
onTabsChange?: (val: string) => void;
};
declare const BeeTabs: {
(props: TabsProps): JSX.Element;
BeeTabPanel: React.FC<PanelProps>;
};
export default BeeTabs;