import { Tab} from 'react-tabs'; import type { TabProps } from 'react-tabs'; function ConceptTab({children, className, ...otherProps} : TabProps) { return ( {children} ); } ConceptTab.tabsRole = 'Tab'; export default ConceptTab;