mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b352aa3691
Summary: As we're adding C++ code, I'm enabling CLANGFORMAT inside the React Native template folder. Changelog: [Internal] Reviewed By: zertosh Differential Revision: D33238197 fbshipit-source-id: e60c849bc776e8ec130c3baba01490d431d39a67
11 lines
199 B
Objective-C
11 lines
199 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|