From 3740ee0bc6552a5b3071905ae5d5bfdf1e03285d Mon Sep 17 00:00:00 2001 From: Timothy Ko Date: Sun, 16 Sep 2018 19:58:21 -0500 Subject: [PATCH] demo --- src/App.js | 5 ++++- src/components/Instructions.component.js | 23 ++++++++++++++++++----- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/src/App.js b/src/App.js index c41ed6c..39aef05 100644 --- a/src/App.js +++ b/src/App.js @@ -7,7 +7,10 @@ class App extends Component { return (

Hello World!

- +
) } diff --git a/src/components/Instructions.component.js b/src/components/Instructions.component.js index d980725..8dfdea1 100644 --- a/src/components/Instructions.component.js +++ b/src/components/Instructions.component.js @@ -6,11 +6,24 @@ class Instructions extends Component { return (
Follow the instructions on the README to get started! - h4i logo + {this.props.shouldDisplayImage && ( + h4i logo + )} + {this.props.items.map((item, index) => ( + + ))}
) }