mirror of
https://github.com/status-im/react-native.git
synced 2025-01-18 13:31:18 +00:00
15 lines
332 B
JavaScript
15 lines
332 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* @providesModule NativeModules
|
|
*/
|
|
'use strict';
|
|
|
|
var NativeModules = require('BatchedBridge').RemoteModules;
|
|
|
|
var nativeModulePrefixNormalizer = require('nativeModulePrefixNormalizer');
|
|
|
|
nativeModulePrefixNormalizer(NativeModules);
|
|
|
|
module.exports = NativeModules;
|