How to use the todomvc-app-css/index.css.destroy function in todomvc-app-css

To help you get started, we’ve selected a few todomvc-app-css examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ArnoSaine / react-pouchdb / todoapp / src / components / List / Item.js View on Github external
className={classNames(
            completed && styles.completed,
            editing && styles.editing
          )}
          onDoubleClick={this.edit}
        >
          <div>
            <input type="checkbox" checked="{completed}">
            <label>{value}</label>
            <button type="button">
          </button></div>
          <input value="{value}" type="text">
        
      );
    }
  }