gitcoinco/code_fund_ads

View on GitHub
app/components/comments_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CommentsComponent < ApplicationComponent
  def initialize(comments:, commentable:)
    @comments = comments
    @commentable = commentable
  end

  private

  attr_accessor :comments, :commentable
end