2023-10-21 00:24:44 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ApplicationComponent < ViewComponent::Base
|
|
|
|
include ApplicationHelper
|
2023-10-22 21:00:25 +02:00
|
|
|
delegate :current_user, to: :helpers
|
|
|
|
delegate :user_signed_in?, to: :helpers
|
2023-10-21 00:24:44 +02:00
|
|
|
end
|