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

8 lines
153 B
Ruby

class Polls::Questions::QuestionComponent < ApplicationComponent
attr_reader :question
def initialize(question:)
@question = question
end
end