UNPKG

@graphql-hive/laboratory

Version:

[Hive](https://the-guild.dev/graphql/hive) is a fully open-source schema registry, analytics, metrics and gateway for [GraphQL federation](https://the-guild.dev/graphql/hive/federation) and other GraphQL APIs.

14 lines (13 loc) 353 B
interface ItemProps { label: string; children: React.ReactNode; } export interface TabsProps { children: (React.ReactElement<ItemProps> | null)[]; suffix?: React.ReactNode; } export declare const Tabs: { ({ children, suffix }: TabsProps): import("react/jsx-runtime").JSX.Element; Item: (_props: ItemProps) => null; }; export {};