mirror of
https://github.com/status-im/react-native.git
synced 2025-01-28 02:04:55 +00:00
0df92afc1c
Summary: Legacy navigator impl. There are other alternatives that should be used instead. Part of the slimmening effort as described here: https://github.com/react-native-community/discussions-and-proposals/issues/6 Reviewed By: TheSavior Differential Revision: D9677824 fbshipit-source-id: 24ae500751d2a8c398f246d36604a58f0b3c113b
17 lines
390 B
Objective-C
17 lines
390 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* 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>
|
|
|
|
@class RCTWrapperViewController;
|
|
|
|
@interface RCTWrapperViewController : UIViewController
|
|
|
|
- (instancetype)initWithContentView:(UIView *)contentView NS_DESIGNATED_INITIALIZER;
|
|
|
|
@end
|