mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 10:19:52 +01:00
12 lines
243 B
Ruby
12 lines
243 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CommentComponent < ApplicationComponent
|
|
include ApplicationHelper
|
|
include BootstrapHelper
|
|
include UserHelper
|
|
|
|
def initialize(comment:, answer:)
|
|
@comment = comment
|
|
@answer = answer
|
|
end
|
|
end
|