bootcamp/app/javascript/controllers/hello_controller.js
Simon Quigley 1e5f2d08e6 Add the initial template, from rails new .
This will become heavily customized over time.
2023-09-13 04:18:09 -05:00

8 lines
157 B
JavaScript

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