Files
nairobi/app/components/polls/questions/question_component.html.erb
Senén Rodero Rodríguez 7efd7c89ef Extract Polls::QuestionComponent
2022-10-18 10:38:08 +02:00

10 lines
243 B
Plaintext

<div id="<%= dom_id(question) %>" class="poll-question">
<h3>
<%= question.title %>
</h3>
<div id="<%= dom_id(question) %>_answers" class="padding">
<%= render Polls::Questions::AnswersComponent.new(question) %>
</div>
</div>