10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
module.exports = function (data) {
|
|
return `
|
|
<footer>
|
|
<p>
|
|
Made with
|
|
<a href="https://github.com/PolymerLabs/lit-starter-ts">lit-starter-ts</a>
|
|
</p>
|
|
</footer>`;
|
|
};
|