You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{html,render}from'lit-html';// A lit-html template uses the `html` template tag:letsayHello=(name)=>html`<h1>Hello ${name}</h1>`;// It's rendered with the `render()` function:render(sayHello('World'),document.body);// And re-renders only update the data that changed, without VDOM diffing!render(sayHello('Everyone'),document.body);
The text was updated successfully, but these errors were encountered:
plz, add support for
*.ts
(inside.tsx
it's ok)https://lit-html.polymer-project.org/
The text was updated successfully, but these errors were encountered: