Created
November 15, 2018 12:01
-
-
Save zapkub/a2283811ed061bd18c967e1bf04fa732 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// TodoCount.jsx | |
const TodoCount = () => { | |
const store = React.useContext(TodoStoreContext); | |
return ( | |
<span className="todo-count"> | |
<strong>{store.todos.length}</strong> item | |
{store.todos.length === 1 ? "" : "s"} left | |
</span> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment