Module: LucidMaterial::Func::Mixin

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

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/lucid_material/func/mixin.rb', line 4

def self.included(base)
  base.include(::React::Component::Elements)
  base.include(::React::Component::Features)
  base.include(::LucidFunc::Initializer)
  base.include(::React::FunctionComponent::API)
  base.include(::React::FunctionComponent::Resolution)
  base.extend(::React::FunctionComponent::EventHandler)
  base.extend(::LucidComponent::EnvironmentSupport)
  base.include(::LucidComponent::EnvironmentSupport)
  base.extend(::LucidMaterial::Func::NativeComponentConstructor)
  base.include(::LucidComponent::API)
end