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