Skip to content

Instantly share code, notes, and snippets.

@zapkub
Created November 15, 2018 12:01
Show Gist options
  • Save zapkub/a2283811ed061bd18c967e1bf04fa732 to your computer and use it in GitHub Desktop.
Save zapkub/a2283811ed061bd18c967e1bf04fa732 to your computer and use it in GitHub Desktop.
// 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