diff --git a/public/components/hello-world.js b/public/components/hello-world.js index 280a187..b3976cf 100644 --- a/public/components/hello-world.js +++ b/public/components/hello-world.js @@ -12,6 +12,8 @@ export default class HelloWorld extends WebComponent { this.name = `I was clicked ${++count} times`; this.render(); }; + this.style.cursor = "pointer"; + this.setAttribute("title", "Click me please"); } get template() {