Sha256: 82a590310b8db1c5af39aa5509bf73e875760f597b6dad426b1d5a3f00e83cae
Contents?: true
Size: 488 Bytes
Versions: 4
Compression:
Stored size: 488 Bytes
Contents
# frozen_string_literal: true module Maquina module Application module Components class TextAreaComponent < ComponentBase def view_template div(**control_html) do @form.label attribute_name, class: "label #{label_css_class}" div(class: "mt-1") do @form.text_area attribute_name, **input_html help_template error_template end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems