diff --git a/public/components/hello-world.js b/public/components/hello-world.js
index 5c1b6e8..b670be1 100644
--- a/public/components/hello-world.js
+++ b/public/components/hello-world.js
@@ -12,11 +12,10 @@ 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() {
- return `Hello ${this.name}! I am interactive`;
+ return ``;
}
}