first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
#pragma once
// Hide C++ symbols from C compiler used when building Swift module
#if defined(__cplusplus)
#pragma mark - New architecture definitions
#if RCT_NEW_ARCH_ENABLED
#import <React/RCTViewComponentView.h>
@interface RNSReactBaseView : RCTViewComponentView
@end
#else
#pragma mark - Legacy architecture definitions
#import <React/RCTView.h>
@interface RNSReactBaseView : RCTView
@end
#endif // RCT_NEW_ARCH_ENABLED
#else
NS_ASSUME_NONNULL_BEGIN
@interface RNSReactBaseView : UIView
@end
NS_ASSUME_NONNULL_END
#endif // __cplusplus