Files
nairobi/app/components/admin/geozones/form_component.rb
Javi Martín c6c09074df Move geozone form partial to a component
That way it'll be easier to refactor it.
2023-05-29 17:46:04 +02:00

8 lines
143 B
Ruby

class Admin::Geozones::FormComponent < ApplicationComponent
attr_reader :geozone
def initialize(geozone)
@geozone = geozone
end
end