import { Controller} from '@hotwired/stimulus' export default class extends Controller { static targets = [ 'indicator' ] static classes = [ 'hidden' ] toggle() { this.indicatorTarget.classList.remove(this.hiddenClass) } }