File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Podcasts dedicated to React and individual podcast episodes with React discussio
16
16
17
17
- [ React 30] ( https://react30.com/ ) - A 30-minute podcast all about React (moved to [ The React Podcast] ( https://reactpodcast.simplecast.fm/ ) ).
18
18
19
- - [ React Native Radio] ( https://devchat.tv/react-native-radio )
19
+ - [ React Native Radio] ( https://reactnativeradio.com ) - Exploring React Native Together, hosted by [ Infinite Red ] ( https://infinite.red )
20
20
21
21
- [ React Wednesdays] ( https://www.telerik.com/react-wednesdays ) - Weekly live streams with the best and brightest in the React world
22
22
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class MyComponent extends React.Component {
72
72
return (
73
73
< ul>
74
74
{items .map (item => (
75
- < li key= {item .name }>
75
+ < li key= {item .id }>
76
76
{item .name } {item .price }
77
77
< / li>
78
78
))}
@@ -120,7 +120,7 @@ function MyComponent() {
120
120
return (
121
121
< ul>
122
122
{items .map (item => (
123
- < li key= {item .name }>
123
+ < li key= {item .id }>
124
124
{item .name } {item .price }
125
125
< / li>
126
126
))}
You can’t perform that action at this time.
0 commit comments