import React from 'react'; class Tab extends React.Component { render() { const {activeTab, tabId, title, onClick, disabled, className = ''} = this.props; const dataTestId = this.props['data-test-id']; return (
  • {title}
  • ); } } export default Tab;