Skip to content

Instantly share code, notes, and snippets.

@jogilvyt
Last active June 22, 2022 13:26
Show Gist options
  • Save jogilvyt/f4699a1b26047d6a4e0e809d3314d25a to your computer and use it in GitHub Desktop.
Save jogilvyt/f4699a1b26047d6a4e0e809d3314d25a to your computer and use it in GitHub Desktop.
import React from "react";
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>
<ToDoList items={[]} />
</div>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment