diff --git a/app/helpers/ink_components/form_builder.rb b/app/helpers/ink_components/form_builder.rb index 8867425..b933bf7 100644 --- a/app/helpers/ink_components/form_builder.rb +++ b/app/helpers/ink_components/form_builder.rb @@ -61,6 +61,11 @@ def select(attribute, choices = nil, select_options = {}, tag_options = {}) end end + def text_area(attribute, **) + state = field_state(attribute) + text_area_component(state:, **html_options(attribute), **) + end + def error_message(attribute, **) state = field_state(attribute) helper_text_component(state:, **) { error_messages(attribute) }