Module: LucidMaterial::Component::Mixin

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

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



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

def self.included(base)
  base.include(::Native::Wrapper)
  base.extend(::LucidComponent::NativeLucidComponentConstructor)
  base.extend(::LucidMaterial::Component::NativeComponentConstructor)
  base.extend(::LucidPropDeclaration::Mixin)
  base.extend(::React::Component::EventHandler)
  base.include(::LucidComponent::PreloadingSupport)
  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(::LucidComponent::Initializer)
  base.include(::React::Component::Features)
  base.include(::React::Component::Resolution)
end