1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

a pure react native project (react native 0.73.6)

This commit is contained in:
2024-03-20 00:05:09 +08:00
commit 0ac4892ac9
57 changed files with 8935 additions and 0 deletions

10
ios/AwesomeProject/main.m Normal file
View File

@@ -0,0 +1,10 @@
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}