UNPKG

@react-tabtab-next/tabtab

Version:

[TypeScript] A mobile support, draggable, editable and api based Tab for ReactJS

12 lines (11 loc) 271 B
import * as React from 'react'; declare type Props = { activeIndex?: number; customStyle?: { Panel: () => void; }; }; export default class PanelList extends React.PureComponent<React.PropsWithChildren<Props>> { render(): JSX.Element; } export {};