Skip to content

Commit

Permalink
init react test
Browse files Browse the repository at this point in the history
  • Loading branch information
HeeBooo committed Oct 5, 2017
1 parent a66c36e commit 8cf7830
Show file tree
Hide file tree
Showing 22 changed files with 95,642 additions and 0 deletions.
15,924 changes: 15,924 additions & 0 deletions build/JSXTransformer.js

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions build/browser.min.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions build/jquery.min.js

Large diffs are not rendered by default.

19,541 changes: 19,541 additions & 0 deletions build/react-0.13.4.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions build/react-0.13.4.min.js

Large diffs are not rendered by default.

18,759 changes: 18,759 additions & 0 deletions build/react-0.14.0.js

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions build/react-dom-0.14.0.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/**
* ReactDOM v0.14.0
*
* 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.
*
*/
// Based off https://github.com/ForbesLindesay/umd/blob/master/template.js
;(function(f) {
// CommonJS
if (typeof exports === "object" && typeof module !== "undefined") {
module.exports = f(require('react'));

// RequireJS
} else if (typeof define === "function" && define.amd) {
define(['react'], f);

// <script>
} else {
var g
if (typeof window !== "undefined") {
g = window;
} else if (typeof global !== "undefined") {
g = global;
} else if (typeof self !== "undefined") {
g = self;
} else {
// works providing we're not in "use strict";
// needed for Java 8 Nashorn
// see https://github.com/facebook/react/issues/3037
g = this;
}
g.ReactDOM = f(g.React);
}

})(function(React) {
return React.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
});
42 changes: 42 additions & 0 deletions build/react-dom.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/**
* ReactDOM v15.0.1
*
* Copyright 2013-present, 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.
*
*/
// Based off https://github.com/ForbesLindesay/umd/blob/master/template.js
;(function(f) {
// CommonJS
if (typeof exports === "object" && typeof module !== "undefined") {
module.exports = f(require('react'));

// RequireJS
} else if (typeof define === "function" && define.amd) {
define(['react'], f);

// <script>
} else {
var g;
if (typeof window !== "undefined") {
g = window;
} else if (typeof global !== "undefined") {
g = global;
} else if (typeof self !== "undefined") {
g = self;
} else {
// works providing we're not in "use strict";
// needed for Java 8 Nashorn
// see https://github.com/facebook/react/issues/3037
g = this;
}
g.ReactDOM = f(g.React);
}

})(function(React) {
return React.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
});
Loading

0 comments on commit 8cf7830

Please sign in to comment.