Created
April 12, 2016 16:40
-
-
Save gmas/514145cf2ba226aef9bb5ff99083b66b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
render(): React.Element { | |
return ( | |
<div className="span8 rightcontent"> | |
<div className="row"> | |
{ this.props.contents.length > 0 ? | |
this.props.contents.forEach((content) => { | |
<ContentsPendingItem {...content} /> | |
}) | |
<div className="row"> | |
{this.renderPaginator()} | |
</div> | |
: | |
null } | |
</div> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment