lib/react/component/mixin.rb in isomorfeus-react-16.9.9 vs lib/react/component/mixin.rb in isomorfeus-react-16.9.10
- old
+ new
@@ -2,16 +2,15 @@
module Component
module Mixin
def self.included(base)
base.include(::Native::Wrapper)
base.extend(::React::Component::NativeComponentConstructor)
- base.extend(::React::Component::NativeComponentValidateProp)
+ base.extend(::LucidPropDeclaration::Mixin)
base.extend(::React::Component::ShouldComponentUpdate)
base.extend(::React::Component::EventHandler)
base.include(::React::Component::Elements)
base.include(::React::Component::API)
base.include(::React::Component::Callbacks)
- # base.include(::React::Component::UnsafeAPI)
base.include(::React::Component::Initializer)
base.include(::React::Component::Features)
base.include(::React::Component::Resolution)
end
end