I have a You need to add the key property where you are rendering with a bunch of inside that consists of all users logged in through Instagram. The is provid
<component2>
, not where you are defining it:component1 = React.createClass({
render: () ->
# A lot of table stuff here
_.chain(@state.users).map((x) -> <component2 profile={x} key={x.id} />),@).value()
)}
component2 = React.createClass({
render: () ->
return (
<tr>
<td>Blah</td>
<td>Blah</td>
<td>Blah</td>
</tr>
)
})