1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00
Maybe/app/helpers/accounts_helper.rb

7 lines
164 B
Ruby
Raw Permalink Normal View History

2024-02-02 09:05:04 -06:00
module AccountsHelper
def summary_card(title:, &block)
content = capture(&block)
render "accounts/summary_card", title: title, content: content
end
2024-02-02 09:05:04 -06:00
end