forked from facebook/react-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 868 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
<!doctype html>
<html>
<head>
<meta charset="utf8">
<title>Container Example</title>
<style>
#target {
flex: 1;
border: none;
border-bottom: 1px solid #ccc;
}
#container {
display: flex;
height: 400px;
}
body {
margin: 0;
display: flex;
flex-direction: column;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<iframe id="target"></iframe>
<div id="container"></div>
<script src="build/container.js"></script>
</body>
</html>