Skip to content

Instantly share code, notes, and snippets.

@kisildev
Created August 20, 2019 14:08
Show Gist options
  • Save kisildev/569fa8d1d9c570ad9b835a246b05efbf to your computer and use it in GitHub Desktop.
Save kisildev/569fa8d1d9c570ad9b835a246b05efbf to your computer and use it in GitHub Desktop.
Render with array map
getUsers() {
const { users } = this.props;
if (Array.isArray(users)) {
return users.map((user) => {
return (<Participant key={user.id} userData={user} />);
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment