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

9 lines
292 B
Ruby

# frozen_string_literal: true
class Views::Base < Components::Base
# The `Views::Base` is an abstract class for all your views.
# By default, it inherits from `Components::Base`, but you
# can change that to `Phlex::HTML` if you want to keep views and
# components independent.
end