@bulmil/core
Version:

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