Files
nairobi/app/components/budgets/investment_component.rb
2022-08-17 13:51:13 +02:00

9 lines
255 B
Ruby

class Budgets::InvestmentComponent < ApplicationComponent
delegate :locale_and_user_status, :namespaced_budget_investment_path, :image_path_for, to: :helpers
attr_reader :investment
def initialize(investment)
@investment = investment
end
end