UNPKG

mwcpl

Version:

Master's Web Component Pattern Library

16 lines (15 loc) 453 B
import { Component, h } from '@stencil/core'; export class MwcplTreeView { render() { return (h("ul", null, h("slot", null))); } static get is() { return "mwcpl-tree-view"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["mwcpl-tree-view.scss"] }; } static get styleUrls() { return { "$": ["mwcpl-tree-view.css"] }; } }