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