We were using the same code in two places, so we're extracting the code into a component in order to share it.
8 lines
135 B
Ruby
8 lines
135 B
Ruby
class Admin::Widget::Cards::RowComponent < ApplicationComponent
|
|
attr_reader :card
|
|
|
|
def initialize(card)
|
|
@card = card
|
|
end
|
|
end
|