forked from vkbansal/react-contextmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 750 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (23 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>React ContextMenu</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="./react-context-menu.css">
<style type="text/css">
a.active, a.active:focus {
background: #337ab7 !important;
color: #fff;
}
a.active:hover, a.active:active {
background: #23527c !important;
color: #fff;
}
</style>
</head>
<body>
<div id="main"></div>
<script type="text/javascript" src="./bundle.js"></script>
</body>
</html>