templates/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3. <div {{ stimulus_controller('hello') }}>
  4.     <input type="text" {{ stimulus_target('hello', 'name') }}>
  5.     <button {{ stimulus_action('hello', 'greet') }}>
  6.         Greet
  7.     </button>
  8.     <div {{ stimulus_target('hello', 'output') }}></div>
  9.     </div>
  10. {% endblock body %}