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
24 lines
540 B
Objective-C
24 lines
540 B
Objective-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.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RCTLegacyViewManagerInteropComponentView : RCTViewComponentView
|
|
|
|
/**
|
|
Returns true for components that are supported by LegacyViewManagerInterop layer, false otherwise.
|
|
*/
|
|
+ (BOOL)isSupported:(NSString *)componentName;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|