module LucidComponent::Mixin
Public Class Methods
included(base)
click to toggle source
# File lib/isomorfeus_preact/lucid_component/mixin.rb, line 3 def self.included(base) base.include(::Native::Wrapper) base.extend(::LucidComponent::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(::LucidComponent::Initializer) end