module LucidPaper::Func::Mixin

Public Class Methods

included(base) click to toggle source
# File lib/isomorfeus_react_paper/lucid_paper/func/mixin.rb, line 4
def self.included(base)
  base.include(::React::Component::Elements)
  base.include(::React::Component::Features)
  base.include(::LucidFunc::Initializer)
  base.include(::React::FunctionComponent::Api)
  base.extend(::LucidPaper::Func::NativeComponentConstructor)
  base.include(::LucidComponent::Api)
end