UNPKG

shineout

Version:

A components library for React

14 lines (13 loc) 374 B
import Tabs from './tabs'; import Panel from './tabs-panel'; type RefTabs = typeof Tabs; type RefTabsPabel = typeof Panel; export interface TabsComponent extends RefTabs { displayName: string; Panel: RefTabsPabel; } export interface TabsPanelComponent extends RefTabsPabel { displayName: string; } declare const TabsComp: TabsComponent; export default TabsComp;