Module: LucidApp::Mixin

Defined in:
lib/lucid_app/mixin.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/lucid_app/mixin.rb', line 3

def self.included(base)
  base.include(::Native::Wrapper)
  base.extend(::LucidApp::NativeLucidComponentConstructor)
  base.extend(::LucidApp::NativeComponentConstructor)
  base.extend(::LucidPropDeclaration::Mixin)
  base.extend(::React::Component::EventHandler)
  base.extend(::LucidComponent::EnvironmentSupport)
  base.include(::LucidComponent::EnvironmentSupport)
  base.include(::React::Component::Elements)
  base.include(::React::Component::API)
  base.include(::React::Component::Callbacks)
  base.include(::LucidComponent::API)
  base.include(::LucidApp::API)
  base.include(::LucidComponent::Initializer)
  base.include(::React::Component::Features)
  base.include(::React::Component::Resolution)
end