astro-sw/demo-static/public/components/web-component.js
Ayo cbe210855e
Some checks are pending
Demo / Explore-CI (push) Waiting to run
chore: add new demo-static
2026-05-15 20:25:36 +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