-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex3_state.html
51 lines (40 loc) · 1.12 KB
/
ex3_state.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React</title>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
</head>
<body>
<div id="root"></div>
<!-- compilation JSX => JS -->
<script type="text/babel">
class Clock extends React.Component{
constructor(props){
super(props);
this.state = {
time: new Date().toLocaleTimeString()
}
setInterval(() => {
this.setState({time: new Date().toLocaleTimeString()})
}, 1000);
}
render() {
return (
<div className="horloge">
{this.state.time}
</div>
)
}
}
// TODO
const container = document.getElementById('root');
ReactDOM.render(
<Clock />,
container
);
</script>
</body>
</html>