8 lines
193 B
Ruby
8 lines
193 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Procedure::InstructeursOptionsComponent < ApplicationComponent
|
|
def initialize(procedure:, state:)
|
|
@procedure = procedure
|
|
@state = state
|
|
end
|
|
end
|