class Tab extends React.Component { render(){ return ( this.props.selectedTab == this.props.id ?
{ this.props.children }
: '' ); } }