Files
nairobi/app/components/polls/poll_header_component.rb
Javi Martín 5dc98929fc Move poll header partial to a component
This way it'll be easier to write tests for it when we change
it.
2024-06-10 16:53:13 +02:00

9 lines
175 B
Ruby

class Polls::PollHeaderComponent < ApplicationComponent
attr_reader :poll
use_helpers :auto_link_already_sanitized_html
def initialize(poll)
@poll = poll
end
end