Note that, in order to be consistent with the name of the component, we're renaming the `budget-execution` class to `budget-executions-investment`.
8 lines
165 B
Ruby
8 lines
165 B
Ruby
class Budgets::Executions::InvestmentComponent < ApplicationComponent
|
|
attr_reader :investment
|
|
|
|
def initialize(investment)
|
|
@investment = investment
|
|
end
|
|
end
|