2.6 completed

This commit is contained in:
counterweight 2025-05-25 00:00:13 +02:00
parent bf5fc1431d
commit 6d81165900
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
4 changed files with 2625 additions and 5 deletions

View file

@ -0,0 +1,16 @@
const PersonList = ({ persons }) => {
console.log("the list");
console.log(persons);
return (
<>
<ul>
{persons.map((person) => {
return <li id={person.name}>{person.name}</li>;
})}
</ul>
</>
);
};
export default PersonList;