Skip to content

Instantly share code, notes, and snippets.

@HunterHeston
Created December 3, 2018 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HunterHeston/0c0410393b173c21058c29a44867cb8b to your computer and use it in GitHub Desktop.
Save HunterHeston/0c0410393b173c21058c29a44867cb8b to your computer and use it in GitHub Desktop.
#js #react #object
<ul>
{
Object.keys(this.props.vendors).map((vendor) => {
return <li>{vendor}</li>;
});
}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment