@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: 'dc4e81e4602f24b00a7227f05c37d62165d7459d' }, h("footer", { key: 'faf78cba44110822a3fbf4d7f69b434e781464bc', class: {
footer: true,
} }, h("slot", { key: '303c1276b790d5b5930345cde43a63254d63e4d7' }))));
}
static get is() { return "bm-footer"; }
static get originalStyleUrls() {
return {
"$": ["footer.scss"]
};
}
static get styleUrls() {
return {
"$": ["footer.css"]
};
}
}