Files
nairobi/app/components/comments/avatar_component.rb
Javi Martín 2c9c5d9cd4 Extract component to render avatars in comments
This way it'll be easier to add tests for it and refactor it.
2024-04-11 18:48:33 +02:00

8 lines
138 B
Ruby

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