Created
August 20, 2018 15:28
-
-
Save mbeaudru/5c53921ff572610bdcc572c1c8e7d45d to your computer and use it in GitHub Desktop.
@Medium - Render Props are the new Controllers / Presentational sample
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
import React from "react"; | |
function TodoItem({ todo, onClick }) { | |
const { label } = todo; | |
return <li onClick={onClick}>{label}</li>; | |
} | |
export default TodoItem; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment