Material UI: finish Create Torrent

This commit is contained in:
DC
2016-08-31 03:35:27 -07:00
parent b6bdeab50b
commit f8cc155650
3 changed files with 107 additions and 82 deletions

View File

@@ -39,14 +39,11 @@ class ShowMore extends React.Component {
? this.props.hideLabel
: this.props.showLabel
return (
<div
style={this.props.style}
>
<div style={this.props.style}>
{this.state.expanded ? this.props.children : null}
<FlatButton
onClick={this.handleClick}
label={label}
/>
label={label} />
</div>
)
}