UNPKG

stencil-quantum

Version:

Experience the quantum realm of stencil.

9 lines (8 loc) 196 B
import { Component, Host, h } from '@stencil/core'; export class QuantumFetch { render() { return (h(Host, null, h("slot", null))); } static get is() { return "quantum-fetch"; } }