8 lines
143 B
Ruby
8 lines
143 B
Ruby
class Admin::Geozones::FormComponent < ApplicationComponent
|
|
attr_reader :geozone
|
|
|
|
def initialize(geozone)
|
|
@geozone = geozone
|
|
end
|
|
end
|