Files
grecia/app/components/images/fields_component.rb
Javi Martín 507fa7c5f5 Remove duplication in attachable fields components
These classes were almost identical.
2021-09-11 17:05:00 +02:00

9 lines
163 B
Ruby

class Images::FieldsComponent < ApplicationComponent
attr_reader :f, :imageable
def initialize(f, imageable:)
@f = f
@imageable = imageable
end
end