module LucidApp::Mixin

Public Class Methods

included(base) click to toggle source
# 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