mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-26 05:15:49 +08: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;
|