Created
October 26, 2017 09:52
-
-
Save wutangpaul/80ad318079bd62ff4b2abe4df76ee88c to your computer and use it in GitHub Desktop.
Data row loop - Angular vs React
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
// Angular 1.x | |
<tr ng-repeat="friend in friends"> | |
<td>{friend.name}</td> | |
</tr> | |
// React/JSX | |
{this.props.friends.map(function(friend) { | |
return ( | |
<tr key={friend.guid}> | |
<td> {friend.name} </td> | |
</tr> | |
); | |
})} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment