Start your All-Access Pass to unlock this challenge
How can you add a second Stimulus controller to the same HTML element?
<div {{ stimulus_controller({ 'first-controller' }, { 'second-controller' }) }}> </div>
<div {{ stimulus_controller({ 'first-controller': {}, 'second-controller': {} }) }}> </div>
<div {{ stimulus_controller( 'first-controller', 'second-controller' ) }}> </div>
You can only attach one controller per HTML element.