import {c, html} from "atomico"; export const Header =c(function Header({title}) { return html`
${title}
`; },{ props: { title: String, } }) customElements.define('c-header', Header);