theseus/app/components/base.rb
2025-05-31 23:25:41 -04:00

15 lines
330 B
Ruby

# frozen_string_literal: true
class Components::Base < Phlex::HTML
include Components
# Include any helpers you want to be available across all components
include Phlex::Rails::Helpers::Routes
if Rails.env.development?
def before_template
comment { "Before #{self.class.name}" }
super
end
end
end