8 lines
160 B
Ruby
8 lines
160 B
Ruby
class Budgets::Investments::InfoComponent < ApplicationComponent
|
|
attr_reader :investment
|
|
|
|
def initialize(investment)
|
|
@investment = investment
|
|
end
|
|
end
|