3
4
5
6
7
8
9
10
11
12
13
14
|
# File 'lib/isomorfeus_preact/lucid_app/mixin.rb', line 3
def self.included(base)
base.include(::Native::Wrapper)
base.extend(::LucidApp::NativeComponentConstructor)
base.include(::Preact::Component::Elements)
base.extend(::LucidPropDeclaration::Mixin)
base.include(::Preact::Component::Api)
base.include(::Preact::Component::Callbacks)
base.include(::LucidComponent::Api)
base.include(::LucidComponent::StylesApi)
base.include(::LucidApp::Api)
base.include(::LucidComponent::Initializer)
end
|