Last active
June 22, 2022 13:26
-
-
Save jogilvyt/f4699a1b26047d6a4e0e809d3314d25a to your computer and use it in GitHub Desktop.
Revisions
-
jogilvyt revised this gist
Jun 22, 2022 . 1 changed file with 5 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,21 +4,23 @@ const ToDoList = ({ items }) => { return ( <div> <ul> {items.length ? items.map((item) => <li key={item.id}>{item.text}</li>) : null} </ul> </div> ); }; const Apps = () => { return ( <div> <h2>Today:</h2> <ToDoList items={[ { id: 1, text: "Water the plants" }, { id: 2, text: "Wash the car" }, { id: 3, text: "Empty the bins" } ]} /> <h2>Tomorrow:</h2> -
jogilvyt created this gist
Jun 22, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ import React from "react"; const ToDoList = ({ items }) => { return ( <div> <ul> {items.length && items.map(item => <li key={item.id}>{item.text}</li>)} </ul> </div> ); }; const App = () => { return ( <div> <h2>Today:</h2> <ToDoList items={[ { id: 1, text: "Water the plants" }, { id: 2, text: "Wash the car" }, { id: 3, text: "Empty the bins" }, ]} /> <h2>Tomorrow:</h2> <ToDoList items={[]} /> </div> ); }; export default App;