// @ts-check import { WebComponent, html } from '../../src/index.js' class StyledElements extends WebComponent { static shadowRootInit = { mode: 'open', } static styles = ` div { background-color: yellow; border: 1px solid black; padding: 1em; p { text-decoration: underline; } } ` get template() { return html`

Wow!?

` } } customElements.define('styled-elements', StyledElements)