UNPKG

@nent/core

Version:

Functional elements to add routing, data-binding, dynamic HTML, declarative actions, audio, video, and so much more. Supercharge static HTML files into web apps without script or builds.

18 lines (17 loc) 429 B
/*! * NENT 2022 */ import { Component, Host, h } from '@stencil/core'; /** * This component should surround the inner-content of a remote HTML file that can be prioritized during SPA navigation. * * @system content */ export class Content { render() { return (h(Host, null, h("slot", null))); } static get is() { return "n-content"; } static get styles() { return "n-content: { display: contents; }"; } }