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