We now have rails files. Does do anything yet though.

This commit is contained in:
2023-02-18 13:04:40 +00:00
commit acd14d5b6d
78 changed files with 1398 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
connect() {
this.element.textContent = "Hello World!"
}
}