@js-smart/react-kit
Version:
13 lines (12 loc) • 348 B
TypeScript
import { default as React } from 'react';
export declare function TabPanel(props: TabPanelProps): import("react/jsx-runtime").JSX.Element;
export declare function a11yProps(index: number): {
id: string;
'aria-controls': string;
};
interface TabPanelProps {
children?: React.ReactNode;
index: number;
value: string;
}
export {};