Files
grecia/app/components/budgets/investments/new_component.rb
Javi Martín 640a0ba83c Move new budget investment view to a component
That way we'll be able to simplify some of the code.
2021-07-13 15:27:14 +02:00

8 lines
143 B
Ruby

class Budgets::Investments::NewComponent < ApplicationComponent
attr_reader :budget
def initialize(budget)
@budget = budget
end
end