embark/lib/modules/webserver/backend/contracts/components/tab.js

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>
:
''
);
}
}