summaryrefslogtreecommitdiffhomepage
path: root/src/controllers/hello_controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/hello_controller.js')
-rw-r--r--src/controllers/hello_controller.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/controllers/hello_controller.js b/src/controllers/hello_controller.js
new file mode 100644
index 0000000..5975c07
--- /dev/null
+++ b/src/controllers/hello_controller.js
@@ -0,0 +1,7 @@
+import { Controller } from "@hotwired/stimulus"
+
+export default class extends Controller {
+ connect() {
+ this.element.textContent = "Hello World!"
+ }
+}