UNPKG

@stories-js/core

Version:

Stories web components to build stories

20 lines 564 B
/*! * (C) StoriesJS https://storiesjs.org - GPL-2.0 License */ // eslint-disable-next-line @typescript-eslint/no-unused-vars import { Component, Host, h } from '@stencil/core'; export class Footer { render() { return (h(Host, { role: "contentinfo" }, h("slot", null))); } static get is() { return "stories-footer"; } static get encapsulation() { return "shadow"; } static get originalStyleUrls() { return { "$": ["footer.scss"] }; } static get styleUrls() { return { "$": ["footer.css"] }; } } //# sourceMappingURL=footer.js.map