chore: get example running in bare react-native on ios

This commit is contained in:
Brent Vatne
2019-08-29 16:09:53 -07:00
parent 3b1eed0415
commit ea4c44af7b
48 changed files with 2090 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}