mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5e80d5c76f
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/53455 All these components have fabric replacements. Let's deprecate them, so we can remove them eventually. Changelog: [iOS][Deprecated] Deprecate all the legacy core components that have replacement implementations in fabric. Reviewed By: cipolleschi Differential Revision: D80973216 fbshipit-source-id: 2b20da0800f099244b4813abf9d8af175627a445
18 lines
410 B
Objective-C
18 lines
410 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/RCTShadowView.h>
|
|
|
|
#ifndef RCT_FIT_RM_OLD_COMPONENT
|
|
|
|
__attribute__((deprecated("This API will be removed along with the legacy architecture.")))
|
|
@interface RCTImageShadowView : RCTShadowView
|
|
|
|
@end
|
|
|
|
#endif
|