forked from RubyLouvre/anu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex5.html
63 lines (48 loc) · 1.36 KB
/
index5.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script type='text/javascript' src="./dist/React.js"></script>
<!-- <script type='text/javascript' src="./test/react-lite.js"></script>
<script type='text/javascript' src="./test/react.js"></script>
<script type='text/javascript' src="./test/react-dom.js"></script>-->
<script type='text/javascript' src="./lib/babel.js"></script>
<script type='text/babel'>
var s
window.onload = function(){
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
tip: 'g-up-tips',
text: 'xxxx'
};
}
render() {
return <div ref='parent' className='parent'>
<Child ref='child'>
<span ref="inner" className="inner">child</span>
</Child>
</div>
}
}
class Child extends React.Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return <div className='child'>{this.props.children}</div>
}
}
s = React.render(<App />, document.getElementById('example'));
}
</script>
</head>
<body>
<div>开发者工具</div>
<div id='example'></div>
</body>
</html>