app/javascript/controllers/hello_controller.js (
6
lines of code) (
raw
):
import { Controller } from "@hotwired/stimulus" export default class extends Controller { connect() { this.element.textContent = "Hello World!" } }