Created
May 21, 2018 07:00
-
-
Save teimurjan/cd753db35b8170ee9767dda782ed6e3a to your computer and use it in GitHub Desktop.
blog-react-applications-optimization
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const TodoFactory = ({ todo, onClick }) => ( | |
<li className="todo" onClick={onClick}> | |
{todo.title} | |
</li> | |
); | |
export default ({ todos }) => ( | |
<ul>{todos.map(todo => TodoFactory({ todo, onClick: console.log }))}</ul> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment