UNPKG

@withjoy/joykit

Version:

UI Component Library for Joy web

16 lines (15 loc) 414 B
import React from 'react'; import { TabsProps } from '../../../../packages/core/components/Tabs'; interface Props { } declare type State = Readonly<{ controlled: string; }>; declare class TabsDemo extends React.PureComponent<Props, State> { state: { controlled: string; }; handleChange: TabsProps['onChange']; render(): React.ReactNode; } export { TabsDemo as default };