mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e9c8fee4ef
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51260 This is a preparatory change that adds an example to RNTester for the Fabric interop layer on iOS. This example is needed to create a Jest E2E tests that will make sure that the Fabric Interop Layer can properly add views as subviews. We discovered the bug thanks to react-native-maps. ## Changelog: [Internal] - Add Example for the Fabric Interop Layer to RNTester iOS Reviewed By: cortinico Differential Revision: D74579737 fbshipit-source-id: 0c1bbb06790b01313cd98aa4b7152d8aba0cded3
15 lines
328 B
Objective-C
15 lines
328 B
Objective-C
/*
|
|
* 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.
|
|
*/
|
|
|
|
#import <React/RCTViewManager.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface InteropTestViewManager : RCTViewManager
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|