8 lines
143 B
Ruby
8 lines
143 B
Ruby
class Budgets::Investments::NewComponent < ApplicationComponent
|
|
attr_reader :budget
|
|
|
|
def initialize(budget)
|
|
@budget = budget
|
|
end
|
|
end
|