demarches-normaliennes/app/components/editable_champ/champ_label_component.rb
2024-08-22 09:26:48 +02:00

10 lines
258 B
Ruby

# frozen_string_literal: true
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