astro-sw/demo/public/components/web-component.js
Ayo 9c551a9e99
Some checks are pending
Demo / Explore-CI (push) Waiting to run
feat(demo): update demo to use Astro 6
2026-04-05 22:59:34 +02:00

14 lines
No EOL
272 B
JavaScript

function register(){
if ('customElements' in window)
window.customElements.define('web-component', WebComponent)
}
class WebComponent extends HTMLElement {
connectedCallback() {
console.log('hello')
}
}
register()
export default WebComponent