8 lines
133 B
Ruby
8 lines
133 B
Ruby
class Budgets::BudgetComponent < ApplicationComponent
|
|
attr_reader :budget
|
|
|
|
def initialize(budget)
|
|
@budget = budget
|
|
end
|
|
end
|