8 lines
153 B
Ruby
8 lines
153 B
Ruby
class Polls::Questions::QuestionComponent < ApplicationComponent
|
|
attr_reader :question
|
|
|
|
def initialize(question:)
|
|
@question = question
|
|
end
|
|
end
|