Skip to content

Instantly share code, notes, and snippets.

@biyootiful
Last active December 1, 2017 19:49
Show Gist options
  • Save biyootiful/648088f59e8dd77f9aa24580d51e3943 to your computer and use it in GitHub Desktop.
Save biyootiful/648088f59e8dd77f9aa24580d51e3943 to your computer and use it in GitHub Desktop.
renderCategories = categories =>
categories.map((cat, i) => {
return (
<a key={i} style={styles.cursor}
onClick={() => this.slideLeft(i)}
>
<h1 style={styles.catFont} id={"category" + i}>
{cat}
</h1>
</a>
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment