Skip to content

Instantly share code, notes, and snippets.

@aranda-adapptor
Created December 24, 2020 04:51
Show Gist options
  • Save aranda-adapptor/bfdfbd3d8951e91d4b92302538d45763 to your computer and use it in GitHub Desktop.
Save aranda-adapptor/bfdfbd3d8951e91d4b92302538d45763 to your computer and use it in GitHub Desktop.
Iterate and render all stars, passing in StarData as props
return (
<View
style={{
flex: 1,
backgroundColor: "black",
}}
>
{stars.map((s) => (
// The spread operator passes all StarData fields as individual props
<Star key={s.id} time={timeVal} {...s} />
))}
</View>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment