Retrospring/app/components/application_component.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
193 B
Ruby
Raw Normal View History

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