@magicbell/magicbell-react
Version:
React components for building a notification inbox for your app
12 lines (11 loc) • 333 B
TypeScript
import React from 'react';
export type HeaderTabsProps = {
activeTab: string;
onChange: (value: string) => void;
tabsConfig: Array<{
storeId: string;
label: string;
}>;
};
declare function HeaderTabs({ tabsConfig, activeTab, onChange }: HeaderTabsProps): React.JSX.Element;
export default HeaderTabs;