From ef1e94c96df50b299c7a737ec2fbf499bda59312 Mon Sep 17 00:00:00 2001 From: Shoaib Bhimani Date: Tue, 5 Jun 2018 04:31:01 +0530 Subject: [PATCH] Fix example in README.md (#73) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d8f966d..a6383b2 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ class TodoListComponent extends React.Component { render() { return (
- getStore().todos.map(todo =>
{todo.text}
) + {getStore().todos.map(todo =>
{todo.text}
)}
); }