import React from 'react'; import styles from './Tab.css'; export default ({children, tabId, active, onTabClick, cStyle = 'base'}) => (
  • onTabClick(tabId)} > {children}
  • );