import React from 'react'; export default function TodoList({ todos }) { return (
    {todos.map((todo, index) => (
  1. {todo.text}
  2. ))}
); }