--- layout: page.11ty.cjs title: ⌲ Home --- # <todo-lit> `` is an awesome element. It's a great introduction to building web components with LitElement, with nice documentation site as well. ## As easy as HTML
`` is just an HTML element. You can it anywhere you can use HTML! ```html ```
## Configure with attributes
`` can be configured with attributed in plain HTML. ```html ```
## Declarative rendering
`` can be used with declarative rendering libraries like Angular, React, Vue, and lit-html ```js import {html, render} from 'lit-html'; const name = 'lit-html'; render( html`

This is a <todo-lit>

`, document.body ); ```

This is a <todo-lit>