mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
9 lines
223 B
Ruby
9 lines
223 B
Ruby
module FormsHelper
|
|
def form_field_tag(&)
|
|
tag.div class: "form-field", &
|
|
end
|
|
|
|
def currency_dropdown(f: nil, options: [])
|
|
render partial: "shared/currency_dropdown", locals: { f: f, options: options }
|
|
end
|
|
end
|