mirror of
https://github.com/zebrajr/react.git
synced 2025-12-07 00:20:28 +01:00
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright 2013-2014, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule ReactInjection
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
var DOMProperty = require('DOMProperty');
|
|
var EventPluginHub = require('EventPluginHub');
|
|
var ReactComponent = require('ReactComponent');
|
|
var ReactCompositeComponent = require('ReactCompositeComponent');
|
|
var ReactEmptyComponent = require('ReactEmptyComponent');
|
|
var ReactBrowserEventEmitter = require('ReactBrowserEventEmitter');
|
|
var ReactNativeComponent = require('ReactNativeComponent');
|
|
var ReactPerf = require('ReactPerf');
|
|
var ReactRootIndex = require('ReactRootIndex');
|
|
var ReactUpdates = require('ReactUpdates');
|
|
|
|
var ReactInjection = {
|
|
Component: ReactComponent.injection,
|
|
CompositeComponent: ReactCompositeComponent.injection,
|
|
DOMProperty: DOMProperty.injection,
|
|
EmptyComponent: ReactEmptyComponent.injection,
|
|
EventPluginHub: EventPluginHub.injection,
|
|
EventEmitter: ReactBrowserEventEmitter.injection,
|
|
NativeComponent: ReactNativeComponent.injection,
|
|
Perf: ReactPerf.injection,
|
|
RootIndex: ReactRootIndex.injection,
|
|
Updates: ReactUpdates.injection
|
|
};
|
|
|
|
module.exports = ReactInjection;
|