mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
995d5b832d
Summary: This is a copy of the current packages/react-native/template that we exclusively use internally for testing. Changelog: [Internal] NOTE: Best contribution would be to scan the file list and ensure there isn't anything that shouldn't be in there. bypass-github-export-checks Reviewed By: cortinico, cipolleschi Differential Revision: D56242484 fbshipit-source-id: 0913ff7acff9b0314b49f48e986674b77dbb908e
18 lines
390 B
Objective-C
18 lines
390 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 <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|