/* * Copyright (c) Meta Platforms, Inc. and 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. * * This component is part of the Fabric Interop Layer and is subject to future * changes (hence the "Unstable" prefix). */ template class UnstableLegacyViewManagerInteropComponentDescriptor : public ConcreteComponentDescriptor< ConcreteViewShadowNode> { public: UnstableLegacyViewManagerInteropComponentDescriptor( ComponentDescriptorParameters const ¶meters) : ConcreteComponentDescriptor< ConcreteViewShadowNode>( parameters) {} private: }; } // namespace react } // namespace facebook