From d09952efc3433b77bdf3d6f11f99584e2522136a Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Mon, 9 Dec 2024 18:12:25 -0500 Subject: [PATCH] Delete hello controller --- assets/controllers/hello_controller.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 assets/controllers/hello_controller.js diff --git a/assets/controllers/hello_controller.js b/assets/controllers/hello_controller.js deleted file mode 100644 index e847027..0000000 --- a/assets/controllers/hello_controller.js +++ /dev/null @@ -1,16 +0,0 @@ -import { Controller } from '@hotwired/stimulus'; - -/* - * This is an example Stimulus controller! - * - * Any element with a data-controller="hello" attribute will cause - * this controller to be executed. The name "hello" comes from the filename: - * hello_controller.js -> "hello" - * - * Delete this file or adapt it for your use! - */ -export default class extends Controller { - connect() { - this.element.textContent = 'Hello Stimulus! Edit me in assets/controllers/hello_controller.js'; - } -}