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({id, label, active, closable, onSwitch}) { return onSwitch(id)}> {label} {closable && } ; }