From 45aac156907b091bed89d109a9c3e0612976bf2e Mon Sep 17 00:00:00 2001 From: xgqfrms Date: Fri, 5 Aug 2016 20:35:37 +0800 Subject: [PATCH 1/2] Create index.html React --- index.html | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..79d9224 --- /dev/null +++ b/index.html @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + React + + +

Hello, world!

+
+ http://xgqfrms.xyz
+ React +
+ + + + + + + From cc3aeae8d5e528afa8b37cf6ed8af019ed33cb5b Mon Sep 17 00:00:00 2001 From: xgqfrms Date: Fri, 2 Sep 2016 19:34:59 +0800 Subject: [PATCH 2/2] 15.3.1 libs 15.3.1 libs of react --- libs/react/15.3.1/react-dom-server.js | 42 + libs/react/15.3.1/react-dom-server.min.js | 12 + libs/react/15.3.1/react-dom.js | 42 + libs/react/15.3.1/react-dom.min.js | 12 + libs/react/15.3.1/react-with-addons.js | 22931 +++++++++++++++++++ libs/react/15.3.1/react-with-addons.min.js | 16 + libs/react/15.3.1/react.js | 20600 +++++++++++++++++ libs/react/15.3.1/react.min.js | 16 + 8 files changed, 43671 insertions(+) create mode 100644 libs/react/15.3.1/react-dom-server.js create mode 100644 libs/react/15.3.1/react-dom-server.min.js create mode 100644 libs/react/15.3.1/react-dom.js create mode 100644 libs/react/15.3.1/react-dom.min.js create mode 100644 libs/react/15.3.1/react-with-addons.js create mode 100644 libs/react/15.3.1/react-with-addons.min.js create mode 100644 libs/react/15.3.1/react.js create mode 100644 libs/react/15.3.1/react.min.js diff --git a/libs/react/15.3.1/react-dom-server.js b/libs/react/15.3.1/react-dom-server.js new file mode 100644 index 0000000..48aee7c --- /dev/null +++ b/libs/react/15.3.1/react-dom-server.js @@ -0,0 +1,42 @@ +/** + * ReactDOMServer v15.3.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); + + //