import React from 'react'; export class TodoListItem extends React.Component { render() { const { label, completed } = this.props; // The "no-op" onChange handler prevents a console warning from React at runtime return (
  • ); } }