Module: Preact::Component::Mixin

Defined in:
lib/preact/component/mixin.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



2
3
4
5
6
7
8
9
10
# File 'lib/preact/component/mixin.rb', line 2

def self.included(base)
  base.include(::Native::Wrapper)
  base.extend(::Preact::Component::NativeComponentConstructor)
  base.extend(::LucidPropDeclaration::Mixin)
  base.include(::Preact::Elements)
  base.include(::Preact::Component::Api)
  base.include(::Preact::Component::Callbacks)
  base.include(::Preact::Component::Initializer)
end