import React from 'react'; import TodoItem from './TodoItem.js'; class TodoList extends React.Component{ //Gets a list of todo items passed as a prop render(){ return(
Number of Items {this.props.items.length}
); } } export default TodoList