6 lines
178 B
Ruby
6 lines
178 B
Ruby
|
class EditableChamp::EditableChampBaseComponent < ApplicationComponent
|
||
|
def initialize(form:, champ:, seen_at: nil)
|
||
|
@form, @champ, @seen_at = form, champ, seen_at
|
||
|
end
|
||
|
end
|