8 lines
137 B
Ruby
8 lines
137 B
Ruby
class Comments::VotesComponent < ApplicationComponent
|
|
attr_reader :comment
|
|
|
|
def initialize(comment)
|
|
@comment = comment
|
|
end
|
|
end
|