4
5
6
7
8
9
10
11
12
13
14
15
16
|
# File 'lib/isomorfeus_react_material/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.include(::React::Component::Elements)
base.include(::React::Component::Api)
base.include(::React::Component::Callbacks)
base.include(::LucidComponent::Api)
base.include(::LucidComponent::StylesApi)
base.include(::LucidComponent::Initializer)
base.include(::React::Component::Features)
end
|