retrospring/app/components/comment_component.rb
2024-03-10 18:23:28 +01:00

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