DEV Community

Discussion on: A React Developers Guide to Writing Enhance Components

Collapse
 
dannyengelman profile image
Danny Engelman • Edited

No matter what code, go JavaScript the compact way

${todos.map(({id,text}) => `<li key="${id}">${text}</li>`).join('')}
Enter fullscreen mode Exit fullscreen mode