Move torrent details to 'underneath' torrent list

This commit is contained in:
John Furrow
2016-01-23 19:50:28 -08:00
parent ccfd9bb077
commit 978db6f67f
31 changed files with 510 additions and 502 deletions

View File

@@ -5,7 +5,7 @@ class ApplicationContent extends React.Component {
render() {
let classes = classnames(this.props.baseClassName, {
[`${this.props.baseClassName}--${this.props.modifier}`]: this.props.baseClassName,
[this.props.extension]: this.props.extension
[this.props.className]: this.props.className
});
return (
@@ -22,7 +22,7 @@ ApplicationContent.defaultProps = {
ApplicationContent.propTypes = {
children: React.PropTypes.node,
extension: React.PropTypes.string,
className: React.PropTypes.string,
modifier: React.PropTypes.string
};