From 76f14389f639d54ea5f3c7fa55baa626332e39d4 Mon Sep 17 00:00:00 2001 From: Adam Mark Date: Mon, 11 Aug 2014 12:13:04 -0400 Subject: [PATCH] Close
tag in sample markup --- docs/flux-todo-list.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/flux-todo-list.md b/docs/flux-todo-list.md index c69976ac..932b0117 100644 --- a/docs/flux-todo-list.md +++ b/docs/flux-todo-list.md @@ -325,7 +325,8 @@ for (var key in allTodos) { return (
-
    {todos}
+
    {todos}
+
); ``` Now each TodoItem can display it's own text, and perform actions utilizing it's own ID. Explaining all the different actions that a TodoItem can invoke in the TodoMVC example goes beyond the scope of this article, but let's just take a look at the action that deletes one of the to-do items. Here is an abbreviated version of the TodoItem: