Skip to content

Instantly share code, notes, and snippets.

@Beej126
Created March 7, 2024 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Beej126/28114aef95817491a18f2293cfc3d0a6 to your computer and use it in GitHub Desktop.
Save Beej126/28114aef95817491a18f2293cfc3d0a6 to your computer and use it in GitHub Desktop.
React iterate to generate elements sample
<ul>
{[1, 2, 3, 4, 5].map(i => <li>{i}</li>)}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment