@nent/core
Version:
18 lines (17 loc) • 429 B
JavaScript
/*!
* 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; }"; }
}