From af03c9e4003689ecc81b5c212f78fcd321ddf39d Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 7 Oct 2023 20:23:31 +0200 Subject: [PATCH] feat: update component --- public/components/hello-world.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/components/hello-world.js b/public/components/hello-world.js index b3976cf..5c1b6e8 100644 --- a/public/components/hello-world.js +++ b/public/components/hello-world.js @@ -17,6 +17,6 @@ export default class HelloWorld extends WebComponent { } get template() { - return `Hello ${this.name}!`; + return `Hello ${this.name}! I am interactive`; } }