6 lines
143 B
Ruby
6 lines
143 B
Ruby
class Instructeurs::ActivateAccountFormComponent < ApplicationComponent
|
|
attr_reader :user
|
|
def initialize(user:)
|
|
@user = user
|
|
end
|
|
end
|