Files
divkit/client/web/divkit-examples/custom-container/customElement.js
T
2023-10-17 15:23:59 +03:00

10 lines
254 B
JavaScript

class CustomContainer extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: 'open' });
shadow.innerHTML = '<slot></slot>';
}
}
customElements.define('custom-container', CustomContainer);