7 lines
166 B
Ruby
7 lines
166 B
Ruby
class EditableChamp::TextareaComponent < ApplicationComponent
|
|
include HtmlToStringHelper
|
|
|
|
def initialize(form:, champ:)
|
|
@form, @champ = form, champ
|
|
end
|
|
end
|