gitcoinco/code_fund_ads

View on GitHub
app/components/metabase_component.rb

Summary

Maintainability
A
0 mins
Test Coverage
class MetabaseComponent < ViewComponent::Base
  def initialize(src:, title: "Metabase dashboard", height: 800)
    @src = src
    @title = title
    @height = height
  end

  private

  attr_reader :src, :title, :height
end