UNPKG

@blaze/atoms

Version:

Open Source UI Toolkit - Atoms

9 lines (8 loc) 209 B
import { h, Component } from '@stencil/core'; export class Tree { render() { return (h("div", { role: "tree", class: "c-tree" }, h("slot", null))); } static get is() { return "blaze-tree"; } }