UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

13 lines (12 loc) 271 B
import React from 'react'; type MenuTab = { label: string; value: string; }; interface MenuTabsProps { tabs: MenuTab[]; defaultTab?: string; onChangeValue?: (value: string) => void; } export declare const MenuTabs: React.FC<MenuTabsProps>; export {};