Files
nairobi/app/components/admin/widget/cards/row_component.rb
Javi Martín 5148919c17 Remove duplication in cards tables
We were using the same code in two places, so we're extracting the code
into a component in order to share it.
2021-01-12 14:50:37 +01:00

8 lines
135 B
Ruby

class Admin::Widget::Cards::RowComponent < ApplicationComponent
attr_reader :card
def initialize(card)
@card = card
end
end