-
Notifications
You must be signed in to change notification settings - Fork 0
/
left-panel.html
37 lines (29 loc) · 944 Bytes
/
left-panel.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
padding: 0;
margin: 0;
background-color: #353535;
}
</style>
</head>
<body>
<link rel="stylesheet" href="./src/resources/packageManagerStyle.css" />
<div id="contentPlaceholder" class="OuterMostContainer"></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: "contentPlaceholder"
};
let tabControl = new PackageManagerEntryPoint.TabControl(configuration);
tabControl.insertTab("Library", null);
tabControl.insertTab("Packages", null);
</script>
</body>
</html>