From be79430999e7a0f607bd5ddd005c2b91ac4b6408 Mon Sep 17 00:00:00 2001 From: Josh Pigford Date: Thu, 8 Feb 2024 13:34:11 -0600 Subject: [PATCH] Delete hello_controller.js --- app/javascript/controllers/hello_controller.js | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 app/javascript/controllers/hello_controller.js diff --git a/app/javascript/controllers/hello_controller.js b/app/javascript/controllers/hello_controller.js deleted file mode 100644 index 5975c078..00000000 --- a/app/javascript/controllers/hello_controller.js +++ /dev/null @@ -1,7 +0,0 @@ -import { Controller } from "@hotwired/stimulus" - -export default class extends Controller { - connect() { - this.element.textContent = "Hello World!" - } -}