mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b66db7a840
Summary: There are many files across fbobjc relying on -include_pch and therefore they miss Foundation.h and UIKit.h includes. This diff was generated by a codemod and fixes these missing includes. More details on the missing imports https://fb.workplace.com/groups/929548250966094/permalink/981237982463787/ Changelog: [Internal] Reviewed By: yannickl Differential Revision: D37282740 fbshipit-source-id: 0f419025b3cf2f811e96ff464cb19e8e5a25aa09
20 lines
376 B
Objective-C
20 lines
376 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/RCTDefines.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
RCT_EXTERN_C_BEGIN
|
|
|
|
UIEdgeInsets RCTContentInsets(UIView *view);
|
|
|
|
RCT_EXTERN_C_END
|
|
|
|
NS_ASSUME_NONNULL_END
|