-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (33 loc) · 854 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Date Picker</title>
<!-- <script src="./node_modules/react/dist/react-with-addons.js"></script> -->
<script src="./node_modules/moment/min/moment-with-locales.js"></script>
<style>
body {
font-family: sans-serif;
}
.example-enter {
opacity: 0.01;
}
.example-enter.example-enter-active {
opacity: 1;
transition: opacity 500ms ease-in;
}
.example-leave {
opacity: 1;
}
.example-leave.example-leave-active {
opacity: 0.01;
transition: opacity 300ms ease-in;
}
</style>
</head>
<body>
<div id="content">
</div>
<script src="/webpack-dev-server.js"></script>
<script type="text/javascript" src="/assets/bundle.js"></script>
</body>
</html>