Files
grecia/app/components/polls/form_component.html.erb
Javi Martín 6c5b908ef5 Use a loop instead of with_collection to render questions
This is what we usually do in components.
2025-08-12 12:45:12 +02:00

4 lines
111 B
Plaintext

<% questions.each do |question| %>
<%= render Polls::Questions::QuestionComponent.new(question) %>
<% end %>