mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c005830958
Summary: This changes adds an example to RNTester to verify that the Interop Layer can process bubbling events in Fabric as it used to do in Paper. ## Changelog: [iOS][Added] - Add example in the Interop Layer to use events Reviewed By: sammy-SC Differential Revision: D43911390 fbshipit-source-id: ae75db25078669676e5a609e090f1e9674026391
20 lines
402 B
Objective-C
20 lines
402 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/RCTComponent.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RNTLegacyView : UIView
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onColorChanged;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|