2015-03-12 19:51:44 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +00:00
|
|
|
* 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.
|
2015-03-12 19:51:44 +00:00
|
|
|
*
|
|
|
|
* @providesModule AppStateIOS
|
2015-03-25 02:34:12 +00:00
|
|
|
* @flow
|
2015-03-12 19:51:44 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-05-23 16:08:51 +00:00
|
|
|
const AppState = require('AppState');
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2016-05-23 16:08:51 +00:00
|
|
|
console.warn('AppStateIOS is deprecated. Use AppState instead');
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2016-05-23 16:08:51 +00:00
|
|
|
module.exports = AppState;
|