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