Files
nairobi/app/components/pages/help/section_component.rb
2021-05-29 14:34:46 +02:00

9 lines
202 B
Ruby

class Pages::Help::SectionComponent < ApplicationComponent
attr_reader :section, :image_path
def initialize(section, image_path = nil)
@section = section
@image_path = image_path
end
end