@bulmil/core
Version:

23 lines (22 loc) • 624 B
JavaScript
/*!
* Bulmil - MIT License
*/
import { h, Host } from "@stencil/core";
export class Footer {
render() {
return (h(Host, { key: '360ae0190628c48877104b451a52d1d4af8d8dd5' }, h("footer", { key: '6f99650c03f233e55a127a69f8af45290d9d1b9e', class: {
footer: true,
} }, h("slot", { key: '804fe525097deee69613e63622b6bab4d6e4104b' }))));
}
static get is() { return "bm-footer"; }
static get originalStyleUrls() {
return {
"$": ["footer.scss"]
};
}
static get styleUrls() {
return {
"$": ["footer.css"]
};
}
}