/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include #include #include namespace facebook { namespace react { /* * Descriptor for component. */ class UnimplementedViewComponentDescriptor final : public ConcreteComponentDescriptor { public: using ConcreteComponentDescriptor::ConcreteComponentDescriptor; /* * Returns `name` and `handle` based on a `flavor`, not on static data from * `UnimplementedViewShadowNode`. */ ComponentHandle getComponentHandle() const override; ComponentName getComponentName() const override; /* * In addtion to base implementation, stores a component name inside cloned * `Props` object. */ Props::Shared cloneProps( PropsParserContext const &context, Props::Shared const &props, RawProps const &rawProps) const override; }; } // namespace react } // namespace facebook