mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
74608ee4ab
Summary: # LegacyViewManagerInterop is born LegacyViewManagerInterop is a component that should make it possible for legacy components to work in Fabric, new renderer. This is just a first stage that prints keys of props to screen together with component name. Reviewed By: shergin Differential Revision: D17552827 fbshipit-source-id: c3e062f413727729e6a9b683c60f59f0292cc63b
16 lines
368 B
C++
16 lines
368 B
C++
/**
|
|
* 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.
|
|
*/
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
extern const char LegacyViewManagerInteropComponentName[] =
|
|
"LegacyViewManagerInterop";
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|