Files
nairobi/app/components/comments/votes_component.rb
2023-10-09 07:38:01 +02:00

8 lines
137 B
Ruby

class Comments::VotesComponent < ApplicationComponent
attr_reader :comment
def initialize(comment)
@comment = comment
end
end