React Todos » Simple Todo List Component
LearnJS » CodeSandbox.io » React Todos
👉 User Story:
Create a `TodoList` component that respect the following signature:
const items = [
{
id: 'x1',
text: 'buy milk',
completed: false,
}
]
<TodoList items={items} />
You can try things out directly on this sandbox:
✅ Proposed Solution:
Don't run this unless you gave a very good effort to solve it yourself!
🤓 Resources:
[[ TO BE COMPLETED ]]