Files
nairobi/app/components/polls/form_component.rb
Javi Martín eccf906e45 Add component to render the form poll
Right now it just renders the questions as it used to.
2025-08-12 12:45:12 +02:00

8 lines
141 B
Ruby

class Polls::FormComponent < ApplicationComponent
attr_reader :questions
def initialize(questions)
@questions = questions
end
end