leilukin-site/shrines/starwarskotor/components/footer.js

15 lines
347 B
JavaScript
Raw Normal View History

class Footer extends HTMLElement {
constructor() {
super();
}
connectedCallback() {
this.innerHTML = `
<footer>
Made with and the Force by Leilukin | <a href="#page-top">Back to top</a>
</footer>
`;
}
}
customElements.define('footer-component', Footer);