8 lines
227 B
Ruby
8 lines
227 B
Ruby
class EditableChamp::ChampLabelComponent < ApplicationComponent
|
|
include Dsfr::InputErrorable
|
|
|
|
def initialize(form:, champ:, seen_at: nil)
|
|
@form, @champ, @seen_at = form, champ, seen_at
|
|
@attribute = :value
|
|
end
|
|
end
|