import { render, html } from 'lit-html'; import './style.css'; export const Hello = () => { return html`
hello world
`; }; // 渲染到指定 DOM 节点 const container1 = document.getElementById('root'); render(Hello(), container1!);