radh-ui
Version:
Stencil Component Starter
25 lines (24 loc) • 952 B
JavaScript
import { Component, h } from '@stencil/core';
export class WsLayoutHoly {
render() {
return (h("div", { id: "holy" },
h("header", { id: "holy-header", role: "banner" },
h("slot", { name: "header" })),
h("nav", { id: "holy-nav" },
h("slot", { name: "nav" })),
h("main", { id: "holy-content", role: "main" },
h("slot", { name: "section" })),
h("aside", { id: "holy-aside", role: "complementary" },
h("slot", { name: "aside" })),
h("footer", { id: "holy-footer", role: "contentinfo" },
h("slot", { name: "footer" }))));
}
static get is() { return "ws-layout-holy"; }
static get encapsulation() { return "shadow"; }
static get originalStyleUrls() { return {
"$": ["ws-layout-holy.css"]
}; }
static get styleUrls() { return {
"$": ["ws-layout-holy.css"]
}; }
}