React

From bibbleWiki
Revision as of 05:38, 23 October 2019 by Iwiseman (talk | contribs) (Variables)
Jump to navigation Jump to search

Quick Reference

Variables

 const myVar = (
   <h1>Love it</h1>
 );

Maps

 // Only do this if items have no stable IDs
 
 const todo = ["fix", "syntax", "highlighting"];
 const todoItems = todos.map((todo, index) =>
 <li key={index}>
   {todo.text}
 </li>
);