import { Controller } from '@hotwired/stimulus' export default class extends Controller { static outlets = [ 'confirmation-modal', 'ajax-modal' ] confirmation({ params: { title, targetUrl, content } }) { this.confirmationModalOutlet.show({ title, targetUrl, content }) } ajax({ params: { title, url } }) { this.ajaxModalOutlet.show({ title, url }) } }