mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
96a5001024
Summary: Adding flow types for DeviceInfo module and migrating our codebase over to using `DeviceInfo.getConstants()` Reviewed By: fkgozali Differential Revision: D14645744 fbshipit-source-id: e30a060c6dc92938cd1420ba11a1d837c79d1e32
16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import NativeDeviceInfo from './NativeDeviceInfo';
|
|
|
|
module.exports = NativeDeviceInfo;
|