Files
nairobi/app/components/admin/site_customization/images/table_actions_component.rb
Javi Martín b33eec101e Extract components to render custom image table actions
This way it'll be easier to refactor them. We're also giving a proper
title to the images index page.
2024-04-17 23:06:52 +02:00

8 lines
160 B
Ruby

class Admin::SiteCustomization::Images::TableActionsComponent < ApplicationComponent
attr_reader :image
def initialize(image)
@image = image
end
end