From 2d17bcf4d599f390bce4898a407aef1a4e7454dc Mon Sep 17 00:00:00 2001
From: hellekin <hellekin@cepheide.org>
Date: Wed, 11 Nov 2020 22:26:29 +0100
Subject: Remove example controller

---
 app/javascript/controllers/hello_controller.js | 18 ------------------
 1 file changed, 18 deletions(-)
 delete mode 100644 app/javascript/controllers/hello_controller.js

(limited to 'app')

diff --git a/app/javascript/controllers/hello_controller.js b/app/javascript/controllers/hello_controller.js
deleted file mode 100644
index 28fdb13..0000000
--- a/app/javascript/controllers/hello_controller.js
+++ /dev/null
@@ -1,18 +0,0 @@
-// Visit The Stimulus Handbook for more details 
-// https://stimulusjs.org/handbook/introduction
-// 
-// This example controller works with specially annotated HTML like:
-//
-// <div data-controller="hello">
-//   <h1 data-target="hello.output"></h1>
-// </div>
-
-import { Controller } from "stimulus"
-
-export default class extends Controller {
-  static targets = [ "output" ]
-
-  connect() {
-    this.outputTarget.textContent = 'Hello, Stimulus!'
-  }
-}
-- 
cgit v1.2.3