mirror of
https://github.com/status-im/react-native.git
synced 2025-01-19 05:51:01 +00:00
c20e0f94fe
Summary: for some reason metro was not able to find js module with just .android.js variant. To workaround some build issue, added an empty .ios.js variant Reviewed By: mdvacca Differential Revision: D7115360 fbshipit-source-id: 40b95cf2efc4d3d599f39b88813469b6d78e7b48
14 lines
311 B
JavaScript
14 lines
311 B
JavaScript
/**
|
|
* 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.
|
|
*
|
|
* @flow
|
|
* @providesModule ToolbarAndroidExample
|
|
*/
|
|
'use strict';
|
|
|
|
// Not applicable to iOS.
|
|
module.exports = require('View');
|