mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-28 12:15:37 +08:00
12 lines
271 B
JavaScript
12 lines
271 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* @providesModule RCTEventEmitter
|
|
*/
|
|
'use strict';
|
|
|
|
var ReactIOSEventEmitter = require('ReactIOSEventEmitter');
|
|
|
|
// Completely locally implemented - no native hooks.
|
|
module.exports = ReactIOSEventEmitter;
|