forked from yeexinc/PackageManagerUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (36 loc) · 1.28 KB
/
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
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Package Manager, Librarie.js Sample View</title>
<style>
body {
padding: 0;
margin: 0;
background-color: #353535;
}
</style>
</head>
<body>
<link rel="stylesheet" href="./src/resources/packageManagerStyle.css" />
<div class="OuterMostContainer">
<div id="leftContentPlaceholder" class="LeftContainer">This space will host lib/pm</div>
<div id="rightContentPlaceholder" class="RightContainer">This will be the detailed space
<div id="packageDetailPlaceHolder"/>
</div>
</div>
<script src="https://unpkg.com/react@15/dist/react.min.js"></script>
<script src="https://unpkg.com/react-dom@15/dist/react-dom.min.js"></script>
<script src='./dist/bundle.js'></script>
<script>
let configuration = {
htmlElementId: "leftContentPlaceholder"
};
let tabControl = new PackageManagerEntryPoint.TabControl(configuration);
tabControl.insertTab("Library", null);
tabControl.insertTab("Packages", null);
</script>
<script src='./dist/bundle.js'></script>
</body>
</html>