gitcoinco/code_fund_ads

View on GitHub
app/components/back_link_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class BackLinkComponent < ApplicationComponent
  def initialize(title: nil, link: nil)
    @title = title
    @link = link
  end

  private

  attr_reader :title, :link

  def render?
    title && link
  end
end