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) => ( + + ))}
) }