import { Props, c, html } from "atomico"; // 3.0kB function component({ name }:Props) { return html`Hello, ${name}`; } component.props = { name: String, }; customElements.define("my-component", c(component));