import clsx from 'clsx'; import type { TabProps } from 'react-tabs'; import { Tab } from 'react-tabs'; import { globalIDs } from '@/utils/constants'; interface ConceptTabProps extends Omit { label?: string; } function ConceptTab({ label, title, className, ...otherProps }: ConceptTabProps) { return ( {label} ); } ConceptTab.tabsRole = 'Tab'; export default ConceptTab;