@appbuckets/react-ui
Version:
Just Another React UI Framework
11 lines (10 loc) • 317 B
TypeScript
import * as React from 'react';
import { Creatable } from '../generic';
import TabPanel from './TabPanel';
import { TabsProps } from './Tabs.types';
declare type TabsChildren = {
Panel: typeof TabPanel;
};
declare const Tabs: Creatable<React.VoidFunctionComponent<TabsProps>> &
TabsChildren;
export default Tabs;