UNPKG

@iobroker/adapter-react

Version:

React classes to develop admin interfaces for ioBroker with react.

23 lines (22 loc) 604 B
export default TabHeader; export type TabHeaderProps = { /** * The key to identify this component. */ key?: string; }; /** * @typedef {object} TabHeaderProps * @property {string} [key] The key to identify this component. * * @extends {React.Component<TabHeaderProps>} */ declare class TabHeader extends React.Component<TabHeaderProps, any, any> { constructor(props: TabHeaderProps | Readonly<TabHeaderProps>); constructor(props: TabHeaderProps, context: any); render(): JSX.Element; } declare namespace TabHeader { const propTypes: {}; } import React from "react";