Rename RCTReachability to RCTNetInfo

This commit is contained in:
Alexsander Akers
2015-08-14 11:08:25 -01:00
parent decf35c271
commit 91c8362176
4 changed files with 16 additions and 21 deletions

View File

@@ -0,0 +1,18 @@
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <SystemConfiguration/SystemConfiguration.h>
#import "RCTBridgeModule.h"
@interface RCTNetInfo : NSObject<RCTBridgeModule>
- (instancetype)initWithHost:(NSString *)host NS_DESIGNATED_INITIALIZER;
@end