class Todo { constructor(configuration) { this.text = configuration.text || 'New TODO' this.checked = false } render() { return (
  • {this.text}
  • ) } }