import { Controller } from 'stimulus'
export default class extends Controller {
static targets = [] static classes = [] static values = {} initialize() { // Called once, when the controller is first instantiated } connect() { // Called any time the controller is connected to the DOM } disconnect() { // Called any time the controller is disconnected from the DOM }
}