Files
nairobi/app/components/admin/settings/text_form_component.rb
2024-01-25 18:29:38 +01:00

10 lines
211 B
Ruby

class Admin::Settings::TextFormComponent < ApplicationComponent
attr_reader :setting, :tab
delegate :dom_id, to: :helpers
def initialize(setting, tab: nil)
@setting = setting
@tab = tab
end
end