evodata/app/javascript/controllers/hello_controller.js

8 lines
157 B
JavaScript
Raw Normal View History

2021-12-18 15:52:01 +01:00
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
connect() {
this.element.textContent = "Hello World!"
}
}