2018-10-23 10:21:38 +02:00

13 lines
276 B
JavaScript

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