8 lines
224 B
Ruby
8 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GroupeGestionnaire::Card::ChildrenComponent < ApplicationComponent
|
|
def initialize(groupe_gestionnaire:, path:)
|
|
@groupe_gestionnaire = groupe_gestionnaire
|
|
@path = path
|
|
end
|
|
end
|