How to use the todomvc-app-css/index.css.view 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
render() {
      const {
        props: {
          doc: { completed = false }
        },
        state: { editing, value }
      } = this;
      return (
        <li>
          <div>
            <input type="checkbox" checked="{completed}">
            <label>{value}</label>
            <button type="button">
          </button></div>
          </li>