Browse Source

增加 react 笔记

liuyuqi-dellpc 5 years ago
parent
commit
b2f60d8088
1 changed files with 26 additions and 0 deletions
  1. 26 0
      react/test1.html

+ 26 - 0
react/test1.html

@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="X-UA-Compatible" content="ie=edge">
+    <title>html嵌入react</title>
+    <script src="https://cdn.staticfile.org/react/16.4.0/umd/react.development.js"></script>
+    <script src="https://cdn.staticfile.org/react-dom/16.4.0/umd/react-dom.development.js"></script>
+    <script src="https://cdn.staticfile.org/babel-standalone/6.26.0/babel.min.js"></script>
+
+</head>
+
+<body>
+    <h1>html嵌入react</h1>
+    <div id="example"></div>
+    <script type="text/babel">
+    ReactDOM.render(
+    	<h1>Hello, world!</h1>,
+    	document.getElementById('example')
+    );
+    </script>
+</body>
+
+</html>