mirror of
https://github.com/System-End/theseus.git
synced 2026-04-20 00:35:18 +00:00
9 lines
292 B
Ruby
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
|