Files
react/src/React.js
Ben Alpert 6c20271488 Rename ReactDOMClient to ReactDOM
This closer matches the npm package name and (I assume) is what we want to call it internally.
2015-07-21 19:30:09 -07:00

29 lines
684 B
JavaScript

/**
* Copyright 2013-2015, 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 React
*/
'use strict';
var ReactDOM = require('ReactDOM');
var ReactDOMServer = require('ReactDOMServer');
var ReactIsomorphic = require('ReactIsomorphic');
var assign = require('Object.assign');
var React = {};
assign(React, ReactIsomorphic);
assign(React, ReactDOM);
assign(React, ReactDOMServer);
React.version = '0.14.0-beta1';
module.exports = React;