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