3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# File 'lib/isomorfeus_react/lucid_component/mixin.rb', line 3
def self.included(base)
base.include(::Native::Wrapper)
base.extend(::LucidComponent::NativeLucidComponentConstructor)
base.extend(::LucidComponent::NativeComponentConstructor)
base.extend(::LucidPropDeclaration::Mixin)
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)
end
|