7 lines
172 B
Ruby
7 lines
172 B
Ruby
class Dossiers::GeoAreasComponent < ApplicationComponent
|
|
attr_reader :champ, :editing
|
|
|
|
def initialize(champ:, editing:)
|
|
@champ, @editing = champ, editing
|
|
end
|
|
end
|