8 lines
141 B
Ruby
8 lines
141 B
Ruby
class Polls::FormComponent < ApplicationComponent
|
|
attr_reader :questions
|
|
|
|
def initialize(questions)
|
|
@questions = questions
|
|
end
|
|
end
|