From 6e8abfa5559534b3a89c3679f5253083e485d742 Mon Sep 17 00:00:00 2001 From: Tim Haines Date: Fri, 23 Jun 2017 11:02:55 -0700 Subject: [PATCH] Removed clear button and added item. --- components/Footer.js | 1 - components/stories/MainSection.js | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Footer.js b/components/Footer.js index 8ae9c59..acc8d1d 100644 --- a/components/Footer.js +++ b/components/Footer.js @@ -56,7 +56,6 @@ class Footer extends Component { )} - {this.renderClearButton()} ) } diff --git a/components/stories/MainSection.js b/components/stories/MainSection.js index f58ad38..6088072 100644 --- a/components/stories/MainSection.js +++ b/components/stories/MainSection.js @@ -15,6 +15,7 @@ storiesOf('MainSection', module) const todoItems = [ { id: 'one', text: 'Item One', completed: false }, { id: 'two', text: 'Item Two', completed: true }, + { id: 'three', text: 'Item Three', completed: false }, ]; return getMainSection(todoItems);