import React, {Fragment} from 'react'; import Fa from 'ui/components/Fa'; import cx from 'classnames'; import ls from './TabSwitcher.less'; export default function TabSwitcher({children, className}) { return
{children}
} export function Tab({label, active, readOnly, onSwitch, onDetach, onClose}) { return {label} {!readOnly && } ; }