import { startStimulusApp } from '@symfony/stimulus-bundle'; import Popover from '@stimulus-components/popover'; import Dialog from '@stimulus-components/dialog'; import Dropdown from '@stimulus-components/dropdown'; import 'animate.css'; import Brock from './components/brock.js'; const app = startStimulusApp(); // register any custom, 3rd party controllers here app.register('popover', Popover); app.register('dialog', Dialog); app.register('dropdown', Dropdown); customElements.define('brock-app', Brock);