-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreport.html
36 lines (32 loc) · 1.29 KB
/
report.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="./report.css">
<link rel="stylesheet" type="text/css" href="./header.css">
</head>
<body>
<main class="fixed-container">
<div id="header">
</div>
<div class="content" id="root">
</div>
</main>
<!-- <p>
This is the third comment.
We will put our React component inside this div.
<div class="like_button_container" data-commentid="3"></div>
</p> -->
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@16/umd/react.production.min.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" crossorigin></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script src="https://unpkg.com/react-motion/build/react-motion.js"></script>
<script src="https://unpkg.com/react-collapse/build/react-collapse.js"></script>
<!-- Load our React component. -->
<script type="text/babel" src="./report.jsx"></script>
<script type="text/babel" src="./header.jsx"></script>
<script type="text/babel" src="./descriptions.jsx"></script>
</body>
</html>