heartcombo--simple_form/lib/simple_form/inputs/text_input.rb

10 lines
168 B
Ruby
Raw Normal View History

module SimpleForm
module Inputs
class TextInput < Base
def input
@builder.text_area(attribute_name, input_html_options)
end
end
end
end