Skip to content

Instantly share code, notes, and snippets.

@dvdfu
Created December 21, 2015 00:54
Show Gist options
  • Save dvdfu/6aefbf5af8adbb639dc6 to your computer and use it in GitHub Desktop.
Save dvdfu/6aefbf5af8adbb639dc6 to your computer and use it in GitHub Desktop.
var footer = data.source || data.tools ? (
<p>
{data.source ? () : null}
{data.tools ? data.tools.join(', ') : null}
</p>
) : null;
...
return (
<div className="project-footer">
<p className="project-description">{data.desc}</p>
{footer}
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment